BgColor - property of the PmfTableColumn object
Description:
The property returns or sets the background color of the selected column of the table area.
If this property is not set, then it takes (inherits) its value from the same
BgColor property of the parent object.
Values:
#rrggbb -
RGB String (represents a color) is written in the form
"#RRGGBB".
inherit - The property takes its value from the parent object
Note:
Property access
for read and write.
This property is also functional in
Web panels.
Example1:
JavaScriptSelect and copy to clipboard
oCol.BgColor = "#ffffff";
// Writing into the property
var sBgColor = oCol.BgColor;
// Reading from the property
oCol.BgColor = "inherit";
// The property takes its value from the parent object