Method function MLDSPlayer.TMLDSPlayer.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: TMLDSPlayer
Contents |
Syntax
Delphi:
function Open() : Boolean;
C++ Builder:
bool __fastcall Open();
Visual C++ (MFC):
bool Open();
Summary
Opens the file and creates the DirectShow graph needed for the player.
Description
Call this method to open the file and creates the DirectShow graph needed for the player. This way the player is ready to play and can start immediately after receiving the Start command.
Delphi example:
VLDSVideoPlayer1.Open;
C++ Builder example:
VLDSVideoPlayer1->Open();
Visual C++(MFC) example:
VLDSVideoPlayer1.Open();
Visual C++/CLI example:
dsVideoPlayer1->Open();
C# example:
dsVideoPlayer1.Open();
VB example:
DSVideoPlayer1.Open