Remarks
Returns the absolute pathname of one of the source sound files added to the conversion automation list.
The total number of source sound files currently available inside the conversion automation list can be obtained through the ConvertAutomationGetFilesCount method.
For further information about sound files conversion see the How to convert format of sound files tutorial.
Syntax
[Visual Basic]
Public Function ConvertAutomationGetFilePathname (
nIndex as Int32
) as Int32
|
|
[C#]
public Int32 ConvertAutomationGetFilePathname (
Int32 nIndex
);
|
|
[C++]
public: Int32 ConvertAutomationGetFilePathname (
Int32 nIndex
);
|
|
Return value
Value
|
Meaning
|
|
|
Empty string
|
The value of the nIndex parameter was out of range. Use the value returned by the ConvertAutomationGetFilesCount method in order to know how many sound files are available inside the conversion list.
|
Valid string
|
The string containing the friendly description of the requested output device.
|
|