This documentation was styled with a demo skin from the Premium Pack 4 add-on for Help & Manual. The contents of the skin are encrypted and not configurable. You can only publish HM projects with this skin. You cannot edit it or change it.
This version is copyright and may only be used for local testing purposes. It may not be distributed.
Please purchase the full version of the Premium Pack to get the configurable skins and remove this notice. The package will also include the Toolbox configuration utility for Premium Pack skins.
Description
Allows assigning/retrieving the text from a control variable.
Syntax
' Set
<controlName>.Text = stringValue
' Get
sText = <controlName>.Text
Returns (Get only)
String, text of the control
Parameters (Set only)
Name |
Type |
Optional |
Meaning |
stringValue |
String |
No |
Text to be assigned to the control |
Remarks
Restrictions
See also
Examples
control add button name "closeButton", hDlg, %IDCANCEL, "", 5, 5, 100, 25
' No need to use hDlg, %IDCANCEL, you can use the name directly
closeButton.Text = "My button"