-
Notifications
You must be signed in to change notification settings - Fork 16
Position and size
Fellippe Heitor edited this page Jan 13, 2018
·
9 revisions
The Top, Left, Height and Width properties hold the coordinates and values to position controls on your form. These can be changed at runtime to reposition controls as needed.
Examples:
Control(Button1).Top = 10
Control(Button1).Left = 10
Control(Button1).Width = 100
Control(Button1).Height = 23