Text - property of the PmgWCheck object
Description:
Description text.
Note:
Property access
for read and write. The preset 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 oCheck = pMe.Items("/Check");
var sText = oCheck.Text; //reading
oCheck.Text = "text"; //writing
Dim oCheck, sText
Set oCheck = pMe.Items("/Check")
sText = oCheck.Text 'reading
oCheck.Text = "text" 'writing