TracksBoard.ItemVolumeFadingSetEx method |
|
Remarks
Modifies parameters of the requested volume fading that will be applied to the given item.
The volume fading implemented by this method applies to the beginning (fade-in) or to the end (fade-out) of the sound file's audio stream and only for sound files items (doesn't apply to Text-To-Speech items).
Current parameters of a specific volume fading can be obtained through the TracksBoard.ItemVolumeFadingGet method.
A specific volume fading can be removed through the TracksBoard.ItemVolumeFadingRemove 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] control.TracksBoard.ItemVolumeFadingSetEx ( nUniqueId as Long, bFadeIn as enumBoolean, nFadeLengthMs as Long, nCurveType as enumVolumeCurves, nLeftX as Integer, nLeftY as Integer, nRightX as Integer, nRightY as Integer, bAutoRefresh as enumBoolean ) as enumErrorCodes |
[C++] short control.TracksBoard.ItemVolumeFadingSetEx ( long nUniqueId, short bFadeIn, long nFadeLengthMs, short nCurveType, short nLeftX, short nLeftY, short nRightX, short nRightY, short bAutoRefresh ); |
Parameter |
Description |
||||||||||||||||||||||||
|
|
||||||||||||||||||||||||
nUniqueId |
Unique identification number assigned to the sound item after being generated by one of the following methods:
|
||||||||||||||||||||||||
bFadeIn |
Boolean value specifying if the fading is a fade-in or a fade-out. Supported values are the following:
|
||||||||||||||||||||||||
nFadeLengthMs |
Length of the fade expressed in milliseconds |
||||||||||||||||||||||||
nCurveType |
Type of curve applied to perform the volume fading.. Supported values are the following:
|
||||||||||||||||||||||||
nLeftX |
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 |
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 |
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 |
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:
|
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 |