Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents  
 
 
SetMixerMicrophoneMute method 
 
Remarks 
 
Sets the mute status of the mixer's Microphone element. 
 
The current mute status can be retrieved using the GetMixerMicrophoneMute 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 SetMixerMicrophoneMute
nIndex as Int16
bMute as bool 
 
[C#] 
public enumErrorCodes SetMixerMicrophoneMute
Int16 nIndex, 
bool bMute 
);
 
[C++] 
public: enumErrorCodes SetMixerMicrophoneMute
Int16 nIndex, 
bool bMute 
);
 
 
Parameter
Description
 
 
nIndex
Number representing the zero-based index of the mixer whose Microphone's mute status must be modified
bMute
Boolean value that tells if Boolean value that tells if mouse-based selections are enabled or disabled 
Supported values are the following: 
Value
Meaning
false
The Microphone element is not in mute status
true
The Microphone element is in mute status
 
 
Return value 
 
Value
Meaning
 
 
Negative value
An error occurred (see the LastError property for further error details)
enumErrorCodes.NOERROR (0)
The method call was successful
 
 
 
 
 
 
 
 
 
Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents