|
Copyright © 2005-2008 MultiMedia Soft
Return to Table of contents
|
|
[Visual Basic]
Public Function CuePointsSaveToFile (
nPlayerIndex as Int16,
strPathname as string
) as enumErrorCodes
|
|
[C#]
public enumErrorCodes CuePointsSaveToFile (
Int16 nPlayerIndex,
string strPathname
);
|
|
[C++]
public: enumErrorCodes CuePointsSaveToFile (
Int16 nPlayerIndex,
string strPathname
);
|
|
Parameter
|
Description
|
|
|
|
|
nPlayer
|
Number representing the zero-based index of the involved player
|
|
strPathname
|
String containing the absolute pathname of the destination CUE file.
An empty string will force the control to search for a CUE file having the same filename of the loaded sound but with extension .cue: if for example the loaded sound file should be named MySong.mp3, the corresponding searched CUE file would be named MySong.cue
|
|
Value
|
Meaning
|
|
|
|
|
Negative value
|
An error occurred (see the LastError property for further error details)
|
|
enumErrorCodes.NOERROR (0)
|
The method call was successful.
|