Controls > Advanced Controls > Button > Button Format Properties
Button Format Properties
Text
The Text property sets or gets the caption of the Button. Can be set via the Properties tab or dynamically at run-time.
JScript
var stringText = PushBtn.Text();
PushBtn.Text(stringText);
VBscript
stringText = PushBtn.Text
PushBtn.Text = stringText
Element
Description
stringText
A string that indicates the Button's caption.
Was this helpful?