Copyright © 2001-2019 MultiMedia Soft

PlayListItemCuePointRemove method

Previous pageReturn to chapter overviewNext page

Remarks

 

Removes a cue point from an item of the playlist.

 

For further details about playlists management see the How to create and manage a playlist tutorial.

For details about using Volume Automation refer to the How to manage Volume Automation tutorial.

For further details about cue points see the How to add Triggers and Cue Points to a player tutorial.

 

 

Syntax

 

[Visual Basic]

control.PlayListItemCuePointRemove (

nPlayer as Integer,

nItem as Integer,

strCuePointName as String

) as enumErrorCodes


 

[C++]

short control.PlayListItemCuePointRemove (

short nPlayer,

short nItem,

LPCTSTR strCuePointName

);


 

 

Parameter

Description

 

 

nPlayer

Number representing the zero-based index of the involved player

nItem

Number representing the zero-based index of the item inside the playlist. The number of available items can be obtained using the PlayListGetCount method.

strCuePointName

String containing the unique name that identifies the cue point: this name must be identical to the one used when the cue point was created through the PlayListItemCuePointAdd method.

 

 

Return value

 

Value

Meaning

 

 

Negative value

An error occurred (see the LastError property for further error details)

enumErrorCodes.ERR_NOERROR (0)

The method call was successful.