Property DSCaptureDevice.TDSDevice.DeviceName
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 DeviceName : String read FName write SetName;
C++ Builder:
__property String DeviceName = { read=FName, write=SetName };
Summary
User friendly name of the device.
Description
Use this property to set or get the user friendly(Human
readable) 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.DeviceName := 'Default DirectSound Device';
C++ Builder example:
ALDSAudioOut1->AudioOutputDevice->DeviceName = "Default DirectSound Device";
Visual C++ example:
ALDSAudioOut1.AudioOutputDevice.DeviceName = "Default DirectSound Device";
Visual C++/CLI example:
dsAudioOut1->AudioOutputDevice->DeviceName = "Default DirectSound Device";
C# example:
dsAudioOut1.AudioOutputDevice.DeviceName = "Default DirectSound Device";
VB example:
DsAudioOut1.AudioOutputDevice.DeviceName = "Default DirectSound Device"