TrackMuteGet Method
channel index
mute flag
Possible values:
Indicates whether the channel is muted.
Syntax
Sub TrackMuteGet( _
   ByVal _nChannel As Integer, _
   ByRef _pbMute As Integer _
) 
void TrackMuteGet( 
   int _nChannel,
   out int _pbMute
)
procedure TrackMuteGet( 
    _nChannel: Integer;
   Out  _pbMute: Integer
); 
void TrackMuteGet( 
   int _nChannel,
   [PARAMFLAG::Out] int _pbMute
) 

Parameters

_nChannel
channel index
_pbMute
mute flag
Possible values:
  • 1 means that channel is muted.
  • 0 means that channel is not muted.
Example
Dim nMute As Integer
track.TrackMuteGet(0, nMute)
int nMute;
track.TrackMuteGet(0, out nMute);
var
nMute: integer;
begin
track.TrackMuteGet(0, nMute);
end;
See Also

Reference

IMAudioTrack Interface
IMAudioTrack Members