Method function ALDSAudioIn.TALDSAudioIn.Open() : Boolean
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
Revision as of 02:45, 11 June 2013
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:
function Open() : Boolean;
C++ Builder:
bool __fastcall Open();
Visual C++ (MFC):
bool 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