-
Notifications
You must be signed in to change notification settings - Fork 3
Position and size
Samuel Gomes edited this page Feb 12, 2024
·
2 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