Method function MLASFPlayer.TMLASFBasicPlayer.Open() : Boolean
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TMLASFBasicPlayer
Contents |
Syntax
Delphi:
function Open() : Boolean;
C++ Builder:
bool __fastcall Open();
Visual C++ (MFC):
bool Open();
Summary
Opens the file and prepares it to be played.
Description
Call this method to open the file and prepare it for playing. This way the player is ready to play and can start immediately after receiving the Start command.
Delphi example:
ALASFPlayer1.Open;
C++ Builder example:
ALASFPlayer1->Open();
Visual C++(MFC) example:
ALASFPlayer1.Open();
Visual C++/CLI example:
asfPlayer1->Open();
C# Example:
asfPlayer1.Open();
VB Example:
ASFPlayer1.Open