Copyright © 2001-2008 MultiMedia Soft 
Return to Table of contents  
 
CuePointsSaveToFile method 
 
Remarks 
 
Saves existing cue points into a destination CUE file. 
CUE files are in XML format and contain settings for defining a pool of pre-defined cue points: CUE files can be loaded through a call to the CuePointsLoadFromFile method or automatically, when a sound is loaded, if the sound's filename and the CUE file's filename match: if for example the loaded sound file should be named MySong.mp3, the corresponding XML file containing cue points should be named MySong.cue 
 
See the How to add Triggers and Cue Points to a player section for further details about cue points. 
 
 
Syntax 
 
[Visual Basic] 
control.CuePointsSaveToFile
nPlayer as Integer, 
strPathname as String 
 
[C++] 
short control.CuePointsSaveToFile
short nPlayer
LPCTSTR 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.
 
 
Return value 
 
Value
Meaning
 
 
Negative value
An error occurred (see the LastError property for further error details)
enumErrorCodes.NOERROR (0)
The method call was successful.
 
 
 
 
 
 
 
 
 
Copyright © 2001-2008 MultiMedia Soft 
Return to Table of contents