Property ALAudioOut.TALAudioOut.Device
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: TALAudioOut
Contents |
Syntax
Delphi:
property Device : TALAudioOutDevice read FDevice write SetDevice;
C++ Builder:
__property TALAudioOutDevice * Device = { read=FDevice, write=SetDevice };
Summary
Specifies the audio output device(s) to be used.
Description
Use this property to specify the audio output device(s) to be
used.
Delphi example:
ALAudioOut1.Device.DeviceName := 'Realtek AC97 Audio';
C++ Builder example:
ALAudioOut1->Device->DeviceName = "Realtek AC97 Audio";
Visual C++ example:
ALAudioOut1.Device.DeviceName = "Realtek AC97 Audio";
Visual C++/CLI example:
audioOut1->Device->DeviceName = "Realtek AC97 Audio";
C# example:
audioOut1.Device.DeviceName = "Realtek AC97 Audio";
VB example:
AudioOut1.Device.DeviceName = "Realtek AC97 Audio"