CallbackVstEditorResized delegate |
|
Remarks
Callback delegate invoked when the editor of the VST effect is resized: this callback can be set through a call to the CallbackVstEditorResizedSet method.
For further details about callback delegates see the How to synchronize the container application with the API tutorial.
For further details about managing a VST effect refer to the How to manage VST effects section.
For further details about methods related to the use of special effects refer to the EffectsMan class.
Syntax
[Visual Basic] Public Delegate Sub CallbackVstEditorResized ( ByVal nIdVST as Int32, ByVal nParamIndex as Int32, ByVal fValue as Single ) |
[C#] public delegate void CallbackVstEditorResized ( Int32 nIdVST, Int32 nParamIndex, float fValue ) |
[C++] public delegate void CallbackVstEditorResized ( Int32 nIdVST, Int32 nParamIndex, float fValue ) |
Parameters |
Description |
|
|
nIdVST |
Unique identifier of the VST effect as returned by the Effects.VstLoad method. |
nParamIndex |
Zero-based index of the parameter |
fValue |
The new value of the given parameter |