Remarks
Obtains the name of a given volume automation point added to an item of the playlist. The volume point can have been previously added through the PlayListItemVolAutomPointAdd method or as a result of a playlist loading through the PlayListLoad method.
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]
control.PlayListItemVolAutomPointNameGet (
nPlayer as Integer,
nItem as Integer,
nPointIndex as Integer
) as String
|
|
[C++]
short control.PlayListItemVolAutomPointNameGet (
short nPlayer,
short nItem,
short nPointIndex
);
|
|
Parameter
|
Description
|
|
|
nPlayer
|
Number representing the zero-based index of the player that owns the playlist
|
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.
|
nPointIndex
|
Number representing the zero-based index of the volume point. The number of available volume automation points can be obtained using the PlayListItemVolAutomPointCountGet method.
|
Return value
Value
|
Meaning
|
|
|
Empty string
|
The information was not available or an error occurred (see the LastError property for further error details)
|
Valid string
|
The name of the volume point
|
|