Property DSCaptureDevice.TDSDevice.OpenedDriverName
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: TDSDevice
Contents |
Syntax
Delphi:
property OpenedDriverName : String read FOpenedDriverName;
C++ Builder:
__property String OpenedDriverName = { read=FOpenedDriverName };
Summary
Name of the driver currently used for capturing or output.
Description
Use this property to get the name of the driver used for
capturing or output.
Delphi example:
var AValue : String; AValue := ALDSAudioOut1.AudioOutputDevice.OpenedDriverName;
C++ Builder example:
AnsiSting AValue = ALDSAudioOut1->AudioOutputDevice->OpenedDriverName;
Visual C++ example:
CSting AValue = ALDSAudioOut1.AudioOutputDevice.OpenedDriverName;
Visual C++/CLI example:
String ^aValue = dsAudioOut1->AudioOutputDevice->OpenedDriverName;
C# example:
String aValue = dsAudioOut1.AudioOutputDevice.OpenedDriverName;
VB example:
Dim aValue as String = DsAudioOut1.AudioOutputDevice.OpenedDriverName