|
PlayListItemVolAutomPointRemove method |
![]() ![]()
|
Remarks
Removes a volume point from an item of the playlist.
This method will return an error if the playlist has not been created with the PlayListCreate method or loaded with the PlayListLoad or PlayListLoadSync methods having the nMode parameter set to PLAYLIST_AUTOMATION_MODE.
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.
Syntax
[Visual Basic] Public Function PlayListItemVolAutomPointRemove ( nPlayerIndex as Int16, nItem as Int16, strVolumePointName as String ) as enumErrorCodes |
[C#] public enumErrorCodes PlayListItemVolAutomPointRemove ( Int16 nPlayerIndex, Int16 nItem, string strVolumePointName ); |
[C++] public: enumErrorCodes PlayListItemVolAutomPointRemove ( Int16 nPlayerIndex, Int16 nItem, string strVolumePointName ); |
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 |
strVolumePointName |
String representing the friendly name of the volume point to remove. |
Return value
Value |
Meaning |
|
|
enumErrorCodes.NOERROR (0) |
The method call was successful |
Negative value |
An error occurred: see the LastError property for further error details or for a list of the possible error values. |