Copyright © 2001-2023 MultiMedia Soft

TracksBoard.ItemVolumePointRemove method

Previous pageReturn to chapter overviewNext page

Remarks

 

Predisposes the removal of a specific volume point previously added to the given sound item through the TracksBoard.ItemVolumePointAdd method: the removal of the volume point is not immediately applied so, in order to be effective, modifications to existing volume points need to be applied through a later call to the TracksBoard.ItemVolumePointsApply method.

 

Volume points may be automatically removed in case the duration of the sound item, containing the volume point, should be resized through the mouse and the volume point should fall outside of the new duration of the sound item itself.

 

For details about the use of the TracksBoard refer to the How to use the TracksBoard to visually compose songs tutorial.

For further details about methods of the TracksBoard refer to the TracksBoard class section.

 

 

Syntax

 

[Visual Basic]

control.TracksBoard.ItemVolumePointRemove (

nUniqueId as Long,

nIndex as Long

) as enumErrorCodes


 

[C++]

short control.TracksBoard.ItemVolumePointRemove (

long nUniqueId,

long nIndex

);


 

Parameter

Description

 

 

nUniqueId

Unique identification number assigned to the sound item after being generated by one of the following methods:

TracksBoard.ItemClone when an existing item has been cloned

nIndex

Zero-based index of the volume point to remove; set this value to -1 to remove all of the available volume points from the given item.

The total number of available volume points can be obtained through the TracksBoard.ItemVolumePointCountGet method.

 

The first and last volume points of the list, whose position is automatically set to the beginning and to the end of the loaded range, are read-only so they cannot be removed.

 

 

Return value

 

Value

Meaning

 

 

Negative value

An error occurred, check the LastError property value in order to get the error code

enumErrorCodes.ERR_NOERROR (0)

The method call was successful