Enum EFieldRight
Access levels to a single field. Read and/or write. This Enum consists of flag values that can be combined.
Namespace: SuperOffice.Data
Assembly: SoCore.dll
Syntax
[Flags]
public enum EFieldRight
Fields
Name | Description |
---|---|
FULL | 3: All possible rights (same as Update = Read + Write) |
None | 0: Hidden from user. |
Nullable | 32: Field can have NULL as a valid value. |
Read | 1: Read-only right |
UIHintMandatory | 64: Field must be filled out (not blank) |
UIHintReadOnly | 128: Field can only be read, not updated, in the user interface. |
UIHints | 192: Rights only applied in the user interface. These rights are threated as deny rights. |
Unused1 | 4: |
Unused2 | 8: |
Unused3 | 16: |
Unused4 | 32: |
Update | 3: Read + Write rights combined |
Write | 2: Write-only (not terribly useful) |