AccessRights (ENUM)¶
TYPE AccessRights :
Describing the access rights of a symbol config node. Those members must be in “sync” with the _3S.CoDeSys.SymbolConfigObject.SymbolAccess enum in the AP. Its values must not use more than 8 bit because it’s stored in a byte in the SymbolicVarsBase.library.
- InOut:
Name
Initial
Comment
AR_NONE
0
No access permitted.
AR_READ
1
Read access permitted.
AR_WRITE
2
Write access permitted.
AR_READWRITE
3
Read and write access permitted.
AR_EXECUTE
8
Execute access permitted (for methods, programs, functions, fb instances…)
AR_READEXECUTE
9
Combination of read / execute.
AR_WRITEEXECUTE
10
Combination of write / execute.
AR_READWRITEEXECUTE
11
Combination of read / write / execute.