ColorItem - property of the PmgWEdit object
Description:
Background color
Note:
Property access
for read and write. The preset value of this property is defined in the "
Background color" configurator of this object. The property returns/sets the
RGB String in the form
"#RRGGBB".
This property is also functional in
Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oEdit = pMe.Items("/WEdit");
var sColorItem = oEdit.ColorItem; //reading
oEdit.ColorItem = "#ffff00"; //writing
Dim oEdit, sColorItem
Set oEdit = pMe.Items("/WEdit")
sColorItem = oEdit.ColorItem 'reading
oEdit.ColorItem = "#ffff00" 'writing