SymbolType
[ Enumeration ]
export enum SymbolType {
Invalid = 0,
Server = 10,
Internal = 20,
LocalizedText = 30,
PartialParam = 40,
TemplateParam = 50,
Function = 60,
Control = 70,
}
The names of the enumeration exist at runtime. For example, you can use TcHmi.SymbolType.Internal
directly in a comparison.
Values
Name | Value | Description |
---|---|---|
Invalid |
| No valid symbol type |
Server | 10 | Server symbol |
Internal | 20 | Internal symbol |
LocalizedText | 30 | Localized text |
PartialParam | 40 | Parameters of a User Control |
TemplateParam | 50 | Parameters of an Action Template |
Function | 60 | Function symbol |
Control | 70 | Control symbol |
Available from 1.8 |