Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents  
 
 
EncodeFormats.ResampleNativeFormatGetDesc method 
 
Remarks 
 
Retrieves the friendly description for a given recording format (e.g. "44100 Hz, Stereo, 16-bit"). 
The number of available recording formats can be obtained using the EncodeFormats.ResampleNativeFormatsGetCount method. 
 
This method can be called only after receiving the InputFormatsAvailable event. 
 
For further details about encoding and resampling options refer to the EncodeFormatsMan class section. 
 
 
Syntax 
 
[Visual Basic] 
Public Function ResampleNativeFormatGetDesc
nInputDevice as Int16, 
nFormatIndex as Int16 
) as string 
 
[C#] 
public string ResampleNativeFormatGetDesc
Int16 nInputDevice
Int16 nFormatIndex 
);
 
[C++] 
public: string ResampleNativeFormatGetDesc
Int16 nInputDevice, 
Int16 nFormatIndex 
);
 
 
Parameter
Description
 
 
nInputDevice
Number representing the zero-based index of the input device
nFormatIndex
Number representing the zero-based index of the recording format
 
 
 
Return value 
 
Value
Meaning
 
 
Empty string
An error occurred. Check the LastError property value in order to see the last error.
Valid string
The string containing the friendly description of the requested recording format.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents