File size: 1,006 Bytes
b1b3bae
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
Public Interface IIndicator

    Property MinimumValue As Double

    Property MaximumValue As Double

    Property CurrentValue As Double

    Property SelectedObjectID As String

    Property SelectedProperty As String

    Property SelectedPropertyType As Enums.UnitOfMeasure

    Property SelectedPropertyUnits As String

    Property DecimalDigits As Integer

    Property IntegralDigits As Integer

    Property VeryLowAlarmEnabled As Boolean

    Property LowAlarmEnabled As Boolean

    Property HighAlarmEnabled As Boolean

    Property VeryHighAlarmEnabled As Boolean

    Property VeryLowAlarmValue As Double

    Property LowAlarmValue As Double

    Property HighAlarmValue As Double

    Property VeryHighAlarmValue As Double

    Property VeryLowAlarmActive As Boolean

    Property LowAlarmActive As Boolean

    Property HighAlarmActive As Boolean

    Property VeryHighAlarmActive As Boolean

    Property ShowAlarms As Boolean

    Property DisplayInPercent As Boolean

End Interface