Remarks
Occurs when the editor of the VST effect is resized.
Syntax
[Visual Basic]
VstEditorResized (
ByVal nIdVST as Long,
ByVal nWidth as Integer,
ByVal nHeight as Integer
)
|
|
[C++]
void VVstEditorResized (
long nIdVST,
short nWidth,
short nHeight
);
|
|
Parameter
|
Description
|
|
|
nIdVST
|
Unique identifier of the VST effect as returned by the Effects.VstLoad method.
|
nWidth
|
New width, expressed in pixels, of the VST effect's editor
|
nHeight
|
New height, expressed in pixels, of the VST effect's editor
|
|