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

0

No access right

READ

1

Only reading allowed

WRITE

2

Only writing allowed

READWRITE

3

Reading and writing allowed

ACCESS 1:

Available from version 1.10.1171.21