Remarks
Removes an existing volume point from the current volume automation procedure.
For further details about defining a volume automation procedure refer to the How to define a volume automation procedure section.
For further details about methods related to the use of special effects refer to the EffectsMan class.
Syntax
[Visual Basic]
Public Function VolumeAutomationPointRemove (
nIndexVolumePoint as Int32
) as enumErrorCodes
|
|
[C#]
public enumErrorCodes VolumeAutomationPointRemove (
Int32 nIndexVolumePoint
);
|
|
[C++]
public: enumErrorCodes VolumeAutomationPointRemove (
Int32 nIndexVolumePoint
);
|
|
Parameter
|
Description
|
|
|
nIndexVolumePoint
|
Zero-based index of the volume point
|
Return value
Value
|
Meaning
|
|
|
Negative value
|
An error occurred (see the LastError property for further error details)
|
enumErrorCodes.ERR_NOERROR (0)
|
The method call was successful.
|
|