| 1 | namespace TablesAndSymbols |
| 2 | { |
| 3 | public enum ColumnCategory |
| 4 | { |
| 5 | Unknown, |
| 6 | Text, |
| 7 | UpperCase, |
| 8 | LowerCase, |
| 9 | Integer, |
| 10 | DoubleInteger, |
| 11 | TimeDate, |
| 12 | Identifier, |
| 13 | Property, |
| 14 | Filename, |
| 15 | WildCardFilename, |
| 16 | Path, |
| 17 | Paths, |
| 18 | AnyPath, |
| 19 | DefaultDir, |
| 20 | RegPath, |
| 21 | Formatted, |
| 22 | Template, |
| 23 | Condition, |
| 24 | Guid, |
| 25 | Version, |
| 26 | Language, |
| 27 | Binary, |
| 28 | CustomSource, |
| 29 | Cabinet, |
| 30 | Shortcut, |
| 31 | FormattedSDDLText, |
| 32 | } |
| 33 | |
| 34 | public enum ColumnModularizeType |
| 35 | { |
| 36 | None, |
| 37 | Column, |
| 38 | Icon, |
| 39 | CompanionFile, |
| 40 | Condition, |
| 41 | ControlEventArgument, |
| 42 | ControlText, |
| 43 | Property, |
| 44 | SemicolonDelimited, |
| 45 | } |
| 46 | |
| 47 | public enum ColumnType |
| 48 | { |
| 49 | Unknown, |
| 50 | String, |
| 51 | Localized, |
| 52 | Number, |
| 53 | Object, |
| 54 | Preserved, |
| 55 | } |
| 56 | } |