Copyright © 2008-2023 MultiMedia Soft

TracksBoard.ItemVolumePointCurveSetEx method

Previous pageReturn to chapter overviewNext page

Remarks

 

Modifies the volume curve applied on exit from the given volume point to reach the volume of the next volume point. The current volume curve can be obtained through the TracksBoard.ItemVolumePointCurveGet method.

 

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]

Public Function ItemVolumePointCurveSetEx (

nUniqueId as Int32,

nIndex as Int32,

nCurveType as enumVolumeCurves,

nLeftX as Int32,

nLeftY as Int32,

nRightX as Int32,

nRightY as Int32,

bAutoRefresh as Boolean

) as enumErrorCodes


 

[C#]

public enumErrorCodes ItemVolumePointCurveSetEx (

Int32 nUniqueId,

Int32 nIndex,

enumVolumeCurves nCurveType,

Int32 nLeftX,

Int32 nLeftY,

Int32 nRightX,

Int32 nRightY,

bool bAutoRefresh

);


 

[C++]

public: enumErrorCodes ItemVolumePointCurveSetEx (

Int32 nUniqueId,

Int32 nIndex,

enumVolumeCurves nCurveType,

Int32 nLeftX,

Int32 nLeftY,

Int32 nRightX,

Int32 nRightY,

bool bAutoRefresh

);


 

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. The total number of available volume points can be obtained through the TracksBoard.ItemVolumePointCountGet method.

nCurveType

The type of curve applied to perform the volume fading.

Supported values are the following:

Mnemonic constant

Value

Meaning

 

 

 

VOLUME_CURVE_LINEAR

1

Linear curve

VOLUME_CURVE_EXPONENTIAL

2

Exponential curve

VOLUME_CURVE_COSINE

3

Cosine curve

VOLUME_CURVE_SMOOTH

4

Smooth curve

VOLUME_CURVE_CUSTOM

5

Custom Bézier curve whose control points are defined inside the nLeftX, nLeftY, nRightX and nRightY parameters.

 

The custom curve designer manages a windowed control, whose visual aspect can be defined programmatically, which allows designing volume curves based upon Bézier curves whose shape is defined through the manual positioning of 2 control points (displayed in cyan color on the graphic below). For further information about the use of the embedded CurveDesigner refer to the tutorial How to create custom volume curves.

 

nLeftX

The horizontal position, expressed in percentage, of the left control point of the Bézier curve.

This parameter is ignored when the nCurveType parameter is set to a value different from VOLUME_CURVE_CUSTOM.

nLeftY

The vertical position, expressed in percentage, of the left control point of the Bézier curve.

This parameter is ignored when the nCurveType parameter is set to a value different from VOLUME_CURVE_CUSTOM.

nRightX

The horizontal position, expressed in percentage, of the right control point of the Bézier curve.

This parameter is ignored when the nCurveType parameter is set to a value different from VOLUME_CURVE_CUSTOM.

nRightY

The vertical position, expressed in percentage, of the right control point of the Bézier curve.

This parameter is ignored when the nCurveType parameter is set to a value different from VOLUME_CURVE_CUSTOM.

bAutoRefresh

Boolean value indicating if the modification should be applied immediately.

Supported values are the following:

Value

Meaning

false

The modification is not applied immediately and will be applied through a later call to one between the following methods:

TracksBoard.ItemVolumePointAmplitudeSet with its bAutoRefresh parameter set to "true"
TracksBoard.ItemVolumePointPositionSet with its bAutoRefresh parameter set to "true"
TracksBoard.ItemVolumePointCurveSet with its bAutoRefresh parameter set to "true"
TracksBoard.ItemVolumePointCurveSetEx with its bAutoRefresh parameter set to "true"

true

The modification is applied immediately

 

 

Return value

 

Value

Meaning

 

 

Negative value

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

enumErrorCodes.NOERROR (0)

The method call was successful.