Method procedure ALCommonPlayer.TALCommonPlayer.Open()
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: TALCommonPlayer
Contents |
Syntax
Delphi:
procedure Open();
C++ Builder:
void __fastcall Open();
Visual C++ (MFC):
void Open();
Summary
Opens the file being for playing.
Description
Call this method to open and prepare the file for playing(reading). This allows the playing to start faster.
Delphi example:
ALWavePlayer1.Open;
C++ Builder example:
ALWavePlayer1->Open();
Visual C++(MFC/Win32) example:
ALWavePlayer1.Open();
Visual C++/CLI example:
wavePlayer1->Open();
C# Example:
wavePlayer1.Open();
VB Example:
WavePlayer1.Open