Method procedure ALDSAudioIn.TALDSAudioIn.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: TALDSAudioIn
Contents |
Syntax
Delphi:
procedure Open();
C++ Builder:
void __fastcall Open();
Visual C++ (MFC):
void Open();
Summary
Opens the device.
Description
Opens the selected audio in 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 capture is that the capture will start much faster if the device is already open.
Delphi example:
ALDSAudioIn1.Open;
C++ Builder example:
ALDSAudioIn1->Open();
Visual C++(MFC/Win32) example:
ALDSAudioIn1.Open();
Visual C++/CLI example:
dsAudioIn1->Open();
C# Example:
dsAudioIn1.Open();
VB Example:
DSAudioIn1.Open