Text - property of the PmgButton object
Description:
Text in the button.
Note:
Property access
for read and write.
The default value of this property is defined in the "
Text" configurator of this object.
This property is also functional in
Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oButton = pMe.Items("/Butt0");
var sText = oButton.Text;
// Reading from the property
oButton.Text = "Button A";
// Writing into the property
Dim oButton
Set oButton = pMe.Items("/Butt0")
Dim sText
sText = oButton.Text
' Reading from the property
oButton.Text = "Button A"
' Writing into the property