| title | Control Property Enhancements |
|---|---|
| parent | GUI Components |
| nav_order | 6 |
| permalink | /Features/GUI-Components/Control-Properties |
TextBox.NumbersOnlyproperty: Restricts input to 0-9 by setting theES_NUMBERstyle on the underlying control.TextBox.TextHintproperty: Sets the light gray hint text in an empty TextBox (EM_SETCUEBANNER).
Label.VerticalAlignmentproperty: Defaults to Top.Label.LineSpacingproperty (in twips, default is 0)Label.Angleproperty (in degrees, rotates the label text)Label.BorderCustomproperty (has suboptions to set size, padding and color of borders independently for each side).
Timer.Interval can now be set to any positive Long instead of being limited to 65,535.
TextBox1.TextHint = "Enter your name"
TextBox1.NumbersOnly = True
Label1.Angle = 45
Label1.LineSpacing = 30
Timer1.Interval = 120000 ' 2 minutes; not limited to 65,535 ms