Text - property of the PmgButtonState object
Description:
Text in the button in the state 0.
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 oBtnState = pMe.Items("/BtnState");
var sText = oBtnState.Text;
// Reading from the property
oBtnState.Text = "Button UP";
// Writing into the property
Dim oBtnState
Set oBtnState = pMe.Items("/BtnState")
Dim sText
sText = oBtnState.Text
' Reading from the property
oBtnState.Text = "Button UP"
' Writing into the property