ACCESS
[ Enumeration ]
export enum ACCESS {
NONE = 0,
READ = 1,
WRITE = 2,
READWRITE = 3
}
The names of the enumeration exist at runtime. For example, you can use TcHmi.Server.ACCESS.NONE
directly in a comparison.
Values
Name | Value | Description |
---|---|---|
NONE |
| No access right |
READ |
| Only reading allowed |
WRITE |
| Only writing allowed |
READWRITE |
| Reading and writing allowed |
Available from version 1.10.1171.21 |