CursorLevel - property of the tvTrend object
Description:
The value of the selected trend at the position of the cursor (only if
CursorType = 1).
Syntax:
Double CursorLevel
Note:
Property access for
read only.
This property is also functional in
Web panels.
The property is used only if the
graphic mode is set.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe.Items("../TrendView");
var oTrend = oTView.Trends(0);
if (oTrend)
{
var nCursorLevel = oTrend.CursorLevel;
// Reading from the property
}
Dim oTView
Set oTView = pMe.Items("../TrendView")
Dim oTrend
Set oTrend = oTView.Trends(0)
If Not oTrend Is Nothing Then
Dim nCursorLevel
nCursorLevel = oTrend.CursorLevel
' Reading from the property
End If