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