Method procedure ALDSAudioOut.TALDSAudioOut.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: TALDSAudioOut
Contents |
Syntax
Delphi:
procedure Open();
C++ Builder:
void __fastcall Open();
Visual C++ (MFC):
void Open();
Summary
Opens the device.
Description
Opens the selected capture driver and builds the DirectShow filter graph. In most cases you will not need to call this procedure. The advantage of calling this before starting the output is that the output will start much faster if the device is already open.
Delphi example:
ALDSAudioOut1.Open;
C++ Builder example:
ALDSAudioOut1->Open();
Visual C++(MFC) example:
ALDSAudioOut1.Open();
Visual C++/CLI example:
dsAudioOut1->Open();
C# Example:
dsAudioOut1.Open();
VB Example:
DSAudioOut1.Open