Controls > Advanced Controls > Checkbox > Checkbox Format Properties
Checkbox Format Properties
LeftText
The LeftText property sets or gets a value that determines whether the checkbox’s caption is left aligned.
JScript
var bMode = CheckBox.LeftText();
CheckBox.LeftText(bMode);
VBscript
bMode = CheckBox.LeftText
CheckBox.LeftText = bMode
Element
Description
bMode
true—indicates that the caption is left aligned.
false—indicates that the caption is not left aligned.
Text
The Text property sets or gets the caption of the checkbox. Can be set via the Properties tab or dynamically at run-time.
JScript
var stringText = CheckBox.Text();
CheckBox.Text(stringText);
VBscript
stringText = CheckBox.Text
CheckBox.Text = stringText
Element
Description
stringText
A string that indicates the checkbox caption.
Was this helpful?