Home
Products
Downloads
Outsouring
Ordering
Support
Blog
RSS
VGScene
Home
Online Help
Getting Started
Run-time Creation
Tutorial
Import Path
Layouts
Links
Run-time Creation
Create VGScene's object at run-time
Just use following code:
...
myObject := TvgButton.Create(Owner);
with myObject do
begin
Parent := myRoot;
Align := vaClient;
Text := 'my text';
end;
...
myRoot is a other VGScene's object