|
Copyright © 2005-2008 MultiMedia Soft
Return to Table of contents
|
|
[Visual Basic]
Public Function EditorGetInfo (
nPlayerIndex as Int16,
nIdVST as Int32,
pInfo as IntPtr
) as enumErrorCodes
|
|
[C#]
public enumErrorCodes EditorGetInfo (
Int16 nPlayerIndex,
Int32 nIdVST,
IntPtr pInfo
);
|
|
[C++]
public: enumErrorCodes EditorGetInfo (
Int16 nPlayerIndex,
Int32 nIdVST,
IntPtr pInfo
);
|
|
Parameter
|
Description
| ||||||||||||||||
|
|
| ||||||||||||||||
|
nPlayerIndex
|
Number representing the zero-based index of the involved player
| ||||||||||||||||
|
nIdVST
|
Unique identifier of the VST effect as returned by the VST.Load method.
| ||||||||||||||||
|
pParamData
|
Pointer in memory to an object of class VstEditorInfo containing information about the VST editor.
The VST_EDITOR_INFO data structure is defined in C++ as follows:
public class VstEditorInfo
{
bool bIsEditorAvailable;
bool bIsEditorVisible;
Int16 nEditorLeft;
Int16 nEditorTop;
Int16 nEditorWidth;
Int16 nEditorHeight;
}
|
|
Value
|
Meaning
|
|
|
|
|
Negative value
|
An error occurred (see the LastError property for further error details)
|
|
enumErrorCodes.NOERROR (0)
|
The method call was successful.
|