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