TextColor - property of the PmfTreeItem object
Description:
The property returns or sets the text color of the tree item.
If this property is not set, then it takes (inherits) its value from the same
TextColor 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
oTreeItem.TextColor = "#000000";
// Writing into the property
var sTextColor = oTreeItem.TextColor;
// Reading from the property
oTreeItem.TextColor = "inherit";
// The property takes its value from the parent object