Property ALDSAudioOut.TALDSAudioOut.AudioOutputDevice
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: TALDSAudioOut
Contents |
Syntax
Delphi:
property AudioOutputDevice : TDSAudioOutputDevice read FAudioOutputDevice write SetAudioOutputDevice;
C++ Builder:
__property TDSAudioOutputDevice * AudioOutputDevice = { read=FAudioOutputDevice, write=SetAudioOutputDevice };
Summary
Specifies primary and alternative audio output devices.
Description
Use this property to specify primary and alternative audio
output devices. The alternative devices will be used if the
primary one is not available.
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"