Class ALVSTHost.TALVSTEditor
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
||
Line 8: | Line 8: | ||
'''Unit:''' [[Unit ALVSTHost|ALVSTHost]] | '''Unit:''' [[Unit ALVSTHost|ALVSTHost]] | ||
− | |||
− | |||
== Syntax == | == Syntax == | ||
=== Delphi: === | === Delphi: === | ||
<code> | <code> | ||
− | '''type''' TALVSTEditor = '''class''' | + | '''type''' TALVSTEditor = '''class''' |
</code> | </code> | ||
=== C++ Builder: === | === C++ Builder: === | ||
<code> | <code> | ||
− | '''class''' TALVSTEditor | + | '''class''' TALVSTEditor |
</code> | </code> | ||
=== Visual C++ (MFC): === | === Visual C++ (MFC): === | ||
<code> | <code> | ||
− | '''class''' CTALVSTEditor | + | '''class''' CTALVSTEditor |
</code> | </code> | ||
=== C# (.NET): === | === C# (.NET): === | ||
<code> | <code> | ||
− | '''public ref class''' TALVSTEditor | + | '''public ref class''' TALVSTEditor |
</code> | </code> | ||
== Summary == | == Summary == | ||
Line 44: | Line 42: | ||
=== Public === | === Public === | ||
− | *[[Method | + | *[[Method function ALVSTHost.TALVSTEditor.Show(TWinControl) : Boolean|function Show(AParent : TWinControl) : Boolean]] - Shows the VST editor on a specific control. |
− | *[[Method | + | *[[Method function ALVSTHost.TALVSTEditor.Show(TWinControl;Integer;Integer) : Boolean|function Show(AParent : TWinControl; AX : Integer; AY : Integer) : Boolean]] - Shows the VST editor at specific position on a specific control. |
− | *[[Method | + | *[[Method function ALVSTHost.TALVSTEditor.Show(HWND) : Boolean|function Show(AWinHandle : HWND) : Boolean]] - Shows the VST editor on a specific window. |
− | *[[Method | + | *[[Method function ALVSTHost.TALVSTEditor.Show(HWND;Integer;Integer) : Boolean|function Show(AWinHandle : HWND; AX : Integer; AY : Integer) : Boolean]] - Shows the VST editor at specific position on a specific window. |
− | *[[Method | + | *[[Method function ALVSTHost.TALVSTEditor.Show() : Boolean|function Show() : Boolean]] - Shows the VST editor. |
+ | *[[Method function ALVSTHost.TALVSTEditor.ShowModal() : Boolean|function ShowModal() : Boolean]] - Shows the VST editor. | ||
*[[Method procedure ALVSTHost.TALVSTEditor.MoveTo(Integer;Integer)|procedure MoveTo(AX : Integer; AY : Integer)]] - Moves the VST editor to a position. | *[[Method procedure ALVSTHost.TALVSTEditor.MoveTo(Integer;Integer)|procedure MoveTo(AX : Integer; AY : Integer)]] - Moves the VST editor to a position. | ||
*[[Method procedure ALVSTHost.TALVSTEditor.Hide()|procedure Hide()]] - Hides the VST editor. | *[[Method procedure ALVSTHost.TALVSTEditor.Hide()|procedure Hide()]] - Hides the VST editor. | ||
*[[Method procedure ALVSTHost.TALVSTEditor.Activate()|procedure Activate()]] - Activates the editor. | *[[Method procedure ALVSTHost.TALVSTEditor.Activate()|procedure Activate()]] - Activates the editor. | ||
*[[Method procedure ALVSTHost.TALVSTEditor.Deactivate()|procedure Deactivate()]] - Deactivates the editor. | *[[Method procedure ALVSTHost.TALVSTEditor.Deactivate()|procedure Deactivate()]] - Deactivates the editor. | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
[[Category:Classes]] | [[Category:Classes]] |
Revision as of 20:30, 10 June 2013
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Package: AudioLabPkg
Unit: ALVSTHost
Contents |
Syntax
Delphi:
type TALVSTEditor = class
C++ Builder:
class TALVSTEditor
Visual C++ (MFC):
class CTALVSTEditor
C# (.NET):
public ref class TALVSTEditor
Summary
VST Visual editor properties class.
Description
Defines VST PlugIn Visual editor properties class.
Properties
Public
- Rectangle - Returns the editors rectangle.
- Available - Indicates if VST editor is available for this PlugIn.
- Visible - Indicates if the editor is visible.
Methods
Public
- function Show(AParent : TWinControl) : Boolean - Shows the VST editor on a specific control.
- function Show(AParent : TWinControl; AX : Integer; AY : Integer) : Boolean - Shows the VST editor at specific position on a specific control.
- function Show(AWinHandle : HWND) : Boolean - Shows the VST editor on a specific window.
- function Show(AWinHandle : HWND; AX : Integer; AY : Integer) : Boolean - Shows the VST editor at specific position on a specific window.
- function Show() : Boolean - Shows the VST editor.
- function ShowModal() : Boolean - Shows the VST editor.
- procedure MoveTo(AX : Integer; AY : Integer) - Moves the VST editor to a position.
- procedure Hide() - Hides the VST editor.
- procedure Activate() - Activates the editor.
- procedure Deactivate() - Deactivates the editor.