Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents  
 
 
GetMixerMasterMute method 
 
Remarks 
 
Gets the mute status of the mixer's Master element. 
 
The mute status can be modified using the SetMixerMasterMute method. 
 
The number of mixers currently installed on the system can be retrieved using the GetMixersCount method. A friendly description of the mixer can be retrieved using the GetMixerDesc method.  
 
 
Syntax 
 
[Visual Basic] 
Public Function GetMixerMasterMute
nIndex as Int16 
) as bool
 
[C#] 
public bool GetMixerMasterMute
Int16 nIndex 
);
 
[C++] 
public: bool GetMixerMasterMute
Int16 nIndex 
);
 
 
 
Parameter
Description
 
 
nIndex
Number representing the zero-based index of the mixer whose master's mute status must be retrieved
 
 
Return value 
 
 
Value
Meaning
 
 
false
The master element is not in mute status
true
The master element is in mute status
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents