Shuxia Ning
2024-12-11 f2cc8078a00824a319dab44841f7cb64fdee76b0
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
namespace Yw.WinFrmUI.Phart
{
    public class PumpPureChartSettings
    {
 
        /// <summary>
        /// 注释是否可见 QH
        /// </summary>
        public bool TxtVisibleQH { get; set; }
 
        /// <summary>
        /// 点是否可见 QH
        /// </summary>
        public bool PointVisibleQH { get; set; }
         
 
        /// <summary>
        /// 点是否可见 QE
        /// </summary>
        public bool PointVisibleQE { get; set; }
 
        /// <summary>
        /// 最高点是否显示 QE
        /// </summary>
        public bool PointVisibleMaxQE { get; set; }
 
        /// <summary>
        /// 线是否可见 QE
        /// </summary>
        public bool LineVisibleQE { get; set; }
 
 
 
 
        /// <summary>
        /// 注释是否可见 QP
        /// </summary>
        public bool TxtVisibleQP { get; set; }
 
        /// <summary>
        /// 点是否可见 QP
        /// </summary>
        public bool PointVisibleQP { get; set; }
 
        /// <summary>
        /// 线是否可见 QP
        /// </summary>
        public bool LineVisibleQP { get; set; }
 
 
         
        /// <summary>
        /// 注释是否可见 Equip
        /// </summary>
        public bool TxtVisibleEquip { get; set; }
 
        /// <summary>
        /// 点是否可见 Equip
        /// </summary>
        public bool PointVisibleEquip { get; set; }
 
        /// <summary>
        /// 线是否可见 Equip
        /// </summary>
        public bool LineVisibleEquip { get; set; }
 
 
 
        /// <summary>
        /// 注释是否可见 EquivEff
        /// </summary>
        public bool TxtVisibleEquivEff { get; set; }
 
        /// <summary>
        /// 点是否可见 EquivEff
        /// </summary>
        public bool PointVisibleEquivEff { get; set; }
 
        /// <summary>
        /// 线是否可见 EquivEff
        /// </summary>
        public bool LineVisibleEquivEff { get; set; }
 
 
 
        /// <summary>
        /// 注释是否可见 EquivPower
        /// </summary>
        public bool TxtVisibleEquivPower { get; set; }
 
        /// <summary>
        /// 点是否可见 EquivPower
        /// </summary>
        public bool PointVisibleEquivPower { get; set; }
 
        /// <summary>
        /// 线是否可见 EquivPower
        /// </summary>
        public bool LineVisibleEquivPower { get; set; }
 
        /// <summary>
        /// 点是否可见 Run
        /// </summary>
        public bool PointVisibleRun { get; set; }
 
 
        /// <summary>
        /// 区域是否可见 Operation
        /// </summary>
        public bool AreaVisibleOperating { get; set; }
 
        /// <summary>
        /// 区域是否可见 ModeSpectrum
        /// </summary>
        public bool AreaVisibleModeSpectrum { get; set; }
 
        /// <summary>
        /// 区域是否可见 HighEfficiency
        /// </summary>
        public bool AreaVisibleHighEff { get; set; }
         
        /// <summary>
        /// 区域是否可见 Tolerance
        /// </summary>
        public bool AreaVisibleTolerance { get; set; }
 
     
        /// <summary>
        /// 线是否可见 Query
        /// </summary>
        public bool LineVisibleQuery { get; set; }
        /// <summary>
        /// 注释是否可见 Query
        /// </summary>
        public bool TxtVisibleQuery { get; set; }
         
 
        /// <summary>
        /// 单色显示
        /// </summary>
        public bool MonochromeDisplay { get; set; }  
 
        /// <summary>
        /// 分割面板
        /// </summary>
        public bool SplitPanel { get; set; }
 
    }
}