MPLATFORMLib Namespace > IMPreview Interface : PreviewAudioVolumeGet Method |
Sub PreviewAudioVolumeGet( _ ByVal _bsChannelID As String, _ ByVal _nChannel As Integer, _ ByRef _pdblAttenuationdB As Double _ )
void PreviewAudioVolumeGet( string _bsChannelID, int _nChannel, out double _pdblAttenuationdB )
procedure PreviewAudioVolumeGet( _bsChannelID: String; _nChannel: Integer; Out _pdblAttenuationdB: Double );
void PreviewAudioVolumeGet( BSTR* _bsChannelID, int _nChannel, [PARAMFLAG::Out] double _pdblAttenuationdB )
Dim myVol As Double m_objPlaylist.PreviewAudioVolumeGet("", -1, myVol)
double myVol; m_objPlaylist.PreviewAudioVolumeGet("", -1, out myVol);
var myVol: double; begin mPreview.PreviewAudioVolumeGet('', -1, out myVol); end;