hytos / DTI_PID / APIDConverter / Utils / AvevaACAD18String.cs @ c6df982b
이력 | 보기 | 이력해설 | 다운로드 (1019 Bytes)
1 |
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 |
public const string DuplicationWarningMessageBox = "Duplication Warning"; |
12 |
static List<string> propertiesFormNames = new List<string>() |
13 |
{ |
14 |
"AVEVA P&ID 12 Pipe Properties", |
15 |
"AVEVA P&ID 12 Valve Properties", |
16 |
"AVEVA P&ID 12 Reducer Properties", |
17 |
"AVEVA P&ID 12 Instrument Properties", |
18 |
"AVEVA P&ID 12 Page Connector Properties" |
19 |
}; |
20 |
static List<string> labelNames = new List<string>() |
21 |
{ |
22 |
"AddLabel", |
23 |
//"AddPrefix", |
24 |
//"AddType", |
25 |
//"AddNumber", |
26 |
//"AddSuffix", |
27 |
}; |
28 |
public static List<string> LabelNames { get { return labelNames; } } |
29 |
public static List<string> PropertiesFormNames { get { return propertiesFormNames; } } |
30 |
|
31 |
} |
32 |
} |