Method function ALDSAudioIn.TALDSAudioIn.ShowAudioDialog(TALDSCaptureDialog) : Boolean
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 ShowAudioDialog( DialogType : TALDSCaptureDialog ) : Boolean;
C++ Builder:
bool __fastcall ShowAudioDialog( TALDSCaptureDialog DialogType );
Visual C++ (MFC):
bool ShowAudioDialog( CTALDSCaptureDialog DialogType );
Summary
Shows a specified DirectShow audio dialog.
Description
Use this method to show a specified DirectShow dialog. Use this component to show the configuration dialogs for the audio capture devices. The available dialogs will differ from device to device. Use the AvailableAudioDialogs property to check which dialogs are available for your capture devices.
Delphi example:
uses DSCaptureDevice; ALDSAudioIn1.ShowAudioDialog( cdAudioCapture );
C++ Builder example:
ALDSAudioIn1->ShowAudioDialog( cdAudioCapture );
Visual C++(MFC/Win32) example:
ALDSAudioIn1.ShowAudioDialog( cdAudioCapture );
Visual C++/CLI example:
dsAudioIn1->ShowAudioDialog( Mitov::AudioLab::DSCaptureDialog::AudioCapture );
C# Example:
dsAudioIn1.ShowAudioDialog( Mitov.AudioLab.DSCaptureDialog.AudioCapture );
VB Example:
DSAudioIn1.ShowAudioDialog( Mitov.AudioLab.DSCaptureDialog.AudioCapture )