Value - property of the PmgWCheck object
Description:
Value of the CheckBox.
Values:
true - If is checked.
false - If is not checked.
Note:
Property access
for read and write.
The preset value of this property is defined in the "
Value" configurator of this object.
If it is written into this property and if this property is linked to the data binding
PP,
AP,
SP,
OP or
GP, then the value is transferred also into the source of this binding.
This property is also functional in
Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oCheck = pMe.Items("/Check");
var bVal = oCheck.Value;
// Reading from the property
oCheck.Value = true;
// Writing into the property
Dim oCheck, bVal
Set oCheck = pMe.Items("/Check")
bVal = oCheck.Value
' Reading from the property
oCheck.Value = true
' Writing into the property