CursorTimeColor - property of the PmgTrendViewer object
Description:
Color of the cursor label time.
Syntax:
String CursorTimeColor
Note:
Property access
for read and write. The preset value of this property is defined in the "
Color of the cursor time label" configurator of this object.
The property returns/sets the RGB String in the form "#RRGGBB".
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe.Items("../TrendView");
var sCursorTimeColor = oTView.CursorTimeColor; //reading
oTView.CursorTimeColor = "#00ff00"; //writing
Dim oTView, sCursorTimeColor
Set oTView = pMe.Items("../TrendView")
sCursorTimeColor = oTView.CursorTimeColor 'reading
oTView.CursorTimeColor = "#00ff00" 'writing