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
Python
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.
 
For Python, use True and False, with a capital letter.
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
Python
stringText = CheckBox.Text
CheckBox.Text = stringText
Element
Description
stringText
A string that indicates the checkbox caption.
Was this helpful?