CallbackEditPerc delegate |
|
Remarks
Callback delegate invoked from a secondary thread started through one of the following methods: ReduceToRange, DeleteRange, InsertSilence, RemoveSilence, TrimSilence, Effects.VolumeFlatApply, Effects.VolumeSlidingApply, Effects.VolumeAutomationApply, Effects.DirectXApply, Effects.EqualizerApply, Effects.CustomDspApply, Effects.VstApply, Effects.TempoApply, Effects.PlaybackRateApply, Effects.PitchApply, Effects.ReverseApply, Effects.FilterApply, Effects.DeNoiseFilterApply, Effects.DeClickFilterApply, Effects.NormalizationSimpleApply, Effects.NormalizationAdvancedApply, Effects.DcOffsetRemovalApply: this callback can be set through a call to the CallbackEditPercSet method.
For further details about callback delegates see the How to synchronize the container application through callback delegates tutorial.
Syntax
[Visual Basic] Public Delegate Sub CallbackEditPerc ( nPercentage as Int16, nCommand as enumSoundEditCommands ) |
[C#] public delegate void CallbackEditPerc ( Int16 nPercentage, enumSoundEditCommands nCommand ) |
[C++] public delegate void CallbackEditPerc ( Int16 nPercentage, enumSoundEditCommands nCommand ) |
Parameter |
Description |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
nPercentage |
Number representing the percentage of advancement for the given operation. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
nCommand |
Identifier of the sound editing command Supported values are the following:
|