Copyright © 2005-2008 MultiMedia Soft 
Return to Table of contents  
 
CuePointsIsEnabled method 
 
Remarks 
 
Verifies if the given cue point is enabled or disabled. 
 
See the How to add Triggers and Cue Points to a player section for further details about cue points. 
 
 
Syntax 
 
[Visual Basic] 
Public Function CuePointsIsEnabled
nPlayerIndex as Int16
strCuePointName as string 
) as Boolean
 
[C#] 
public bool CuePointsIsEnabled
Int16 nPlayerIndex, 
string strCuePointName 
);
 
[C++] 
public: bool CuePointsIsEnabled
Int16 nPlayerIndex, 
string strCuePointName 
);
 
 
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.
 
 
Return value 
 
Mnemonic constant
Meaning
false
Cue point is disabled
true (default)
Cue point is enabled
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Copyright © 2005-2008 MultiMedia Soft 
Return to Table of contents