Method function VLDSCapture.TVLDSCapture.ShowVideoDialog(TVLDSCaptureDialog) : Boolean
Latest revision as of 00:18, 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: TVLDSCapture
Contents |
Syntax
Delphi:
function ShowVideoDialog( DialogType : TVLDSCaptureDialog ) : Boolean;
C++ Builder:
bool __fastcall ShowVideoDialog( TVLDSCaptureDialog DialogType );
Visual C++ (MFC):
bool ShowVideoDialog( CTVLDSCaptureDialog DialogType );
Summary
Shows a specified DirectShow video dialog.
Description
Use this method to show a specified DirectShow dialog. Use this component to show the configuration dialogs for the video capture devices. The available dialogs will differ from device to device. Use the AvailableVideoDialogs property to check which dialogs are available for your capture devices.
Delphi example:
uses DSCaptureDevice; VLDSCapture1.ShowVideoDialog( cdVideoSource );
C++ Builder example:
VLDSCapture1->ShowVideoDialog( cdVideoSource );
Visual C++(MFC) example:
VLDSCapture1.ShowVideoDialog( cdVideoSource );
Visual C++/CLI example:
dsCapture1->ShowVideoDialog( Mitov::VideoLab::DSCaptureDialog::VideoSource );
C# Example:
dsCapture1.ShowVideoDialog( Mitov.VideoLab.DSCaptureDialog.VideoSource );
VB Example:
DSCapture1.ShowVideoDialog( Mitov.VideoLab.DSCaptureDialog.VideoSource )