Copyright © 2005-2008 MultiMedia Soft 
Return to Table of contents  
 
MixerGetDesc method 
 
Remarks 
 
Retrieves the friendly description of the requested mixer. This method is very useful when you have to fill a combo box with the friendly names of the available mixers.  
 
The total number of available mixers can be obtained using the MixerGetCount method. 
 
 
Syntax 
 
[Visual Basic] 
Public Function MixerGetDesc
nIndex as Int16 
) as String
 
[C#] 
public string MixerGetDesc
Int16 nIndex 
);
 
[C++] 
public: string MixerGetDesc
Int16 nIndex 
);
 
 
Parameter
Description
 
 
nIndex
Number representing the zero-based index of the mixer whose friendly name must be retrieved
 
Return value 
 
Value
Meaning
 
 
Empty string
The value of the nIndex parameter was out of range. Use the value returned by the GetMixersCount method in order to know how many mixers are currently installed on the system.
Valid string
The string containing the friendly description of the requested mixer.
 
 
 
 
 
 
 
 
 
 
 
 
 
Copyright © 2005-2008 MultiMedia Soft 
Return to Table of contents