Property VLCapture.TVLCapture.DriverName
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: TVLCapture
Contents |
Syntax
Delphi:
property DriverName : String read FVideoDriverName write SetDriverName;
C++ Builder:
__property String DriverName = { read=FVideoDriverName, write=SetDriverName };
Summary
The name of the desired video capturing device driver.
Description
Use this property to specify the name of the desired video
capturing device driver.
Delphi example:
VLCapture1.DriverIndex := 'Microsoft WDM Image Capture (Win32)';
C++ Builder example:
VLCapture1->DriverIndex = "Microsoft WDM Image Capture (Win32)";
Visual C++(MFC) example:
VLCapture1.DriverIndex = "Microsoft WDM Image Capture (Win32)";
C# example:
capture1.DriverIndex = "Microsoft WDM Image Capture (Win32)";