SoundComposer.ItemSoundFileVolumeSlidingRemove method |
|
Remarks
Removes a specific linear volume sliding, previously added through the SoundComposer.ItemSoundFileVolumeSlidingAdd method, from the given sound file item.
For further details about sound composing see the the SoundComposerMan class and the How to compose a sound tutorial.
Syntax
[Visual Basic] Public Function ItemSoundFileVolumeSlidingRemove ( nUniqueId as Int32, nVolumeSlidingUniqueId as Int32 ) as enumErrorCodes |
[C#] public enumErrorCodes ItemSoundFileVolumeSlidingRemove ( Int32 nUniqueId, Int32 nVolumeSlidingUniqueId ); |
[C++] public: enumErrorCodes ItemSoundFileVolumeSlidingRemove ( Int32 nUniqueId, Int32 nVolumeSlidingUniqueId ); |
Parameter |
Description |
|
|
nUniqueId |
The unique identifier of the sound file item previously returned by the call to one of the following methods: SoundComposer.ItemSoundFileAdd, SoundComposer.ItemSoundFileMemoryAdd, SoundComposer.ItemSoundFileRawAdd, SoundComposer.ItemSoundFileMemoryRawAdd, SoundComposer.ItemSoundFileFromEditorAdd,or SoundComposer.ItemSoundFileFromRecorderAdd. |
nVolumeSlidingUniqueId |
The unique identifier of the linear volume sliding returned by the SoundComposer.ItemSoundFileVolumeSlidingAdd method or by the SoundComposer.ItemSoundFileVolumeSlidingUniqueIdGet method. |
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. |