Copyright © 2005-2008 MultiMedia Soft 
Return to Table of contents  
 
CuePointsSetPos method 
 
Remarks 
 
Modifies the current position for the given cue point. 
 
See the How to add Triggers and Cue Points to a player section for further details about cue points. 
 
 
Syntax 
 
[Visual Basic] 
Public Function CuePointsSetPos
nPlayerIndex as Int16
strCuePointName as string, 
nCuePointPos as Int32 
 
[C#] 
public enumErrorCodes CuePointsSetPos
Int16 nPlayerIndex, 
string strCuePointName, 
Int32 nCuePointPos 
);
 
[C++] 
public: enumErrorCodes CuePointsSetPos
Int16 nPlayerIndex, 
string strCuePointName, 
Int32 nCuePointPos 
);
 
 
Parameter
Description
 
 
nPlayer
Number representing the zero-based index of the involved player
strCuePointName
String containing the unique name of the cue point as defined when the cue point was added through the CuePointsAdd method.
nCuePointPos
Number representing the new cue point position expressed in milliseconds
 
 
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 © 2005-2008 MultiMedia Soft 
Return to Table of contents