Property DSCaptureDevice.TDSDevice.DriverName
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 DriverName : String read FDriverName;
C++ Builder:
__property String DriverName = { read=FDriverName };
Summary
Driver name of the device.
Description
Use this property to set or get the driver name of the device
to be used for capturing or output.
The specified device will be used for capture. If the device is not available and if there is a collection of alternative devices specified, the first alternative device will be used. For more details on alternative devices see the TDSVideoCaptureDevice and TDSAudioCaptureDevice.
Delphi example:
ALDSAudioOut1.AudioOutputDevice.DriverName := '@device:cm:{E0F158E1-CB04-11D0-BD4E-00A0C911CE86}\Default DirectSound Device';
C++ Builder example:
ALDSAudioOut1->AudioOutputDevice->DriverName = "@device:cm:{E0F158E1-CB04-11D0-BD4E-00A0C911CE86}\Default DirectSound Device";
Visual C++ example:
ALDSAudioOut1.AudioOutputDevice.DriverName = "@device:cm:{E0F158E1-CB04-11D0-BD4E-00A0C911CE86}\Default DirectSound Device";
Visual C++/CLI example:
dsAudioOut1->AudioOutputDevice->DriverName = "@device:cm:{E0F158E1-CB04-11D0-BD4E-00A0C911CE86}\Default DirectSound Device";
C# example:
dsAudioOut1.AudioOutputDevice.DriverName = "@device:cm:{E0F158E1-CB04-11D0-BD4E-00A0C911CE86}\Default DirectSound Device";
VB example:
DsAudioOut1.AudioOutputDevice.DriverName = "@device:cm:{E0F158E1-CB04-11D0-BD4E-00A0C911CE86}\Default DirectSound Device"