TableTimeTextColor - property of the PmgTrendViewer object
Description:
Color of the time values in the column of the time in the table mode.
Syntax:
String TableTimeTextColor
Note:
Property access
for read and write.
The default value of this property is defined in the "
Table time text color" configurator of this object.
This property is also functional in
Web panels.
The property is used only if the
table mode is set.
The property returns or sets the
RGB String in the form
"#RRGGBB".
Example1:
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe.Items("../TrendView");
var sTableTimeTextColor = oTView.TableTimeTextColor;
// Reading from the property
oTView.TableTimeTextColor = "#00ff00";
// Writing into the property
Dim oTView
Set oTView = pMe.Items("../TrendView")
Dim sTableTimeTextColor
sTableTimeTextColor = oTView.TableTimeTextColor
' Reading from the property
oTView.TableTimeTextColor = "#00ff00"
' Writing into the property