Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents  
 
 
GetMixerMicrophoneVolume method 
 
Remarks 
 
Retrieves the Microphone volume for the given mixer. 
 
The returned volume can be modified using the SetMixerMicrophoneVolume 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.  
 
This method is not supported under Windows Vista. 
 
Syntax 
 
[Visual Basic] 
Public Function GetMixerMicrophoneVolume
nIndex as Int16 
) as Int16
 
[C#] 
public Int16 GetMixerMicrophoneVolume
Int16 nIndex 
);
 
[C++] 
public: Int16 GetMixerMicrophoneVolume
Int16 nIndex 
);
 
 
 
Parameter
Description
 
 
nIndex
Number representing the zero-based index of the mixer whose Microphone volume must be retrieved
 
 
Return value 
 
 
Value
Meaning
 
 
Negative value
An error occurred (see the LastError property for further error details)
>= 0
The current Microphone volume in the range from 0 to 100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents