AudioRenderers
property, read-only
Delphi
property AudioRenderers: string read GetAudioRenderers;
C++Builder
__property System::UnicodeString AudioRenderers = {read=GetAudioRenderers};
C#
public string AudioRenderers { get; }
VB.NET
Public ReadOnly Property AudioRenderers As String
C++/Qt
wchar_t *GetAudioRenderers ();
Retrieves a string that contains the list of the audio renderers available on the current platform.
This list can be assigned to list based controls. E.g.:
ComboBox1.Items.Text := AudioRenderers; ComboBox1.ItemIndex := ViddeoGrabber1.AudioRenderer; ( index in the AudioRenderers list.)
It is possible to retrieve programmatically the index of an audio renderer by using the FindIndexInListByName function as follows:
VideoGrabber.AudioRenderer := VideoGrabber.FindIndexInListByName (VideoGrabber.AudioRenderers, '...name of the audio render to use...', false, true);
Note: in Delphi and C++Builder versions of the component, this property is available also as a AudioRenderers global variable.