ColorItem - property of the PmgWCheck object
Description:
Background color
Note:
Property access
for read and write.
The default value of this property is defined in the "
Background color" configurator of this object.
The property returns or sets the
RGB String in the form
"#RRGGBB".
This property is also functional in
Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oCheck = pMe.Items("/Check");
var sColorItem = oCheck.ColorItem;
// Reading from the property
oCheck.ColorItem = "#0000ff";
// Writing into the property
Dim oCheck
Set oCheck = pMe.Items("/Check")
Dim sColorItem
sColorItem = oCheck.ColorItem
' Reading from the property
oCheck.ColorItem = "#0000ff"
' Writing into the property