hytos / DTI_PID / APIDConverter / Utils / AvevaACAD18String.cs @ dd6d4de9
이력 | 보기 | 이력해설 | 다운로드 (1.2 KB)
1 | 932933ed | gaqhf | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | using System.Threading.Tasks; |
||
6 | |||
7 | namespace AVEVA.PID.CustomizationUtility |
||
8 | { |
||
9 | public static class AvevaACAD18String |
||
10 | { |
||
11 | c94252bf | gaqhf | public const string DuplicationWarningMessageBox = "Duplication Warning"; |
12 | 87f22597 | gaqhf | static List<string> propertiesFormNames = new List<string>() |
13 | { |
||
14 | "AVEVA P&ID 12 Pipe Properties", |
||
15 | "AVEVA P&ID 12 Valve Properties", |
||
16 | b048c104 | gaqhf | "AVEVA P&ID 12 Reducer Properties", |
17 | 20dd244c | gaqhf | "AVEVA P&ID 12 Instrument Properties", |
18 | a6d63eda | gaqhf | "AVEVA P&ID 12 Specification Break Properties", |
19 | "AVEVA P&ID 12 Line Fitting Properties", |
||
20 | "AVEVA P&ID 12 Equipment Properties", |
||
21 | "AVEVA P&ID 12 Nozzle Properties", |
||
22 | "AVEVA P&ID 12 Page Connector Properties", |
||
23 | 87f22597 | gaqhf | }; |
24 | d03dde83 | gaqhf | static List<string> labelNames = new List<string>() |
25 | { |
||
26 | "AddLabel", |
||
27 | c6df982b | gaqhf | //"AddPrefix", |
28 | //"AddType", |
||
29 | //"AddNumber", |
||
30 | //"AddSuffix", |
||
31 | d03dde83 | gaqhf | }; |
32 | public static List<string> LabelNames { get { return labelNames; } } |
||
33 | 87f22597 | gaqhf | public static List<string> PropertiesFormNames { get { return propertiesFormNames; } } |
34 | |||
35 | 932933ed | gaqhf | } |
36 | } |