Method procedure ALCommonPlayer.TALCommonPlayer.Close()
From Mitov Wiki Doc
(Difference between revisions)
Latest revision as of 00:23, 22 November 2011
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 Close();
C++ Builder:
void __fastcall Close();
Visual C++ (MFC):
void Close();
Summary
Closes the file being played, and closes any drivers associated with it.
Description
Forces the component to send EndStop command to all components connected to it, and this way forcing them to close any open files.
Delphi example:
ALWavePlayer1.Close;
C++ Builder example:
ALWavePlayer1->Close();
Visual C++(MFC/Win32) example:
ALWavePlayer1.Close();
Visual C++/CLI example:
wavePlayer1->Close();
C# Example:
wavePlayer1.Close();
VB Example:
WavePlayer1.Close