|
Copyright © 2005-2008 MultiMedia Soft
Return to Table of contents
|
|
[Visual Basic]
Public Function CuePointsEnable (
nPlayerIndex as Int16,
strCuePointName as string,
bEnable as Boolean
) as enumErrorCodes
|
|
[C#]
public enumErrorCodes CuePointsEnable (
Int16 nPlayerIndex,
string strCuePointName,
bool bEnable
);
|
|
[C++]
public: enumErrorCodes CuePointsEnable (
Int16 nPlayerIndex,
string strCuePointName,
bool bEnable
);
|
|
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.
| ||||||
|
bEnable
|
Boolean value that tells if the cue point must be enabled or disabled.
Supported values are the following:
|
|
Value
|
Meaning
|
|
|
|
|
Negative value
|
An error occurred (see the LastError property for further error details)
|
|
enumErrorCodes.NOERROR (0)
|
The method call was successful.
|