Class 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
public sealed class EFieldRight : Enum
Fields
FULL
3: All possible rights (same as Update = Read + Write)
Declaration
public const EFieldRight FULL
Field Value
Type | Description |
---|---|
EFieldRight |
None
0: Hidden from user.
Declaration
public const EFieldRight None
Field Value
Type | Description |
---|---|
EFieldRight |
Nullable
32: Field can have NULL as a valid value.
Declaration
public const EFieldRight Nullable
Field Value
Type | Description |
---|---|
EFieldRight |
Read
1: Read-only right
Declaration
public const EFieldRight Read
Field Value
Type | Description |
---|---|
EFieldRight |
UIHintMandatory
64: Field must be filled out (not blank)
Declaration
public const EFieldRight UIHintMandatory
Field Value
Type | Description |
---|---|
EFieldRight |
UIHintReadOnly
128: Field can only be read, not updated, in the user interface.
Declaration
public const EFieldRight UIHintReadOnly
Field Value
Type | Description |
---|---|
EFieldRight |
UIHints
192: Rights only applied in the user interface. These rights are threated as deny rights.
Declaration
public const EFieldRight UIHints
Field Value
Type | Description |
---|---|
EFieldRight |
Unused1
4:
Declaration
public const EFieldRight Unused1
Field Value
Type | Description |
---|---|
EFieldRight |
Unused2
8:
Declaration
public const EFieldRight Unused2
Field Value
Type | Description |
---|---|
EFieldRight |
Unused3
16:
Declaration
public const EFieldRight Unused3
Field Value
Type | Description |
---|---|
EFieldRight |
Unused4
32:
Declaration
public const EFieldRight Unused4
Field Value
Type | Description |
---|---|
EFieldRight |
Update
3: Read + Write rights combined
Declaration
public const EFieldRight Update
Field Value
Type | Description |
---|---|
EFieldRight |
value__
Access levels to a single field. Read and/or write. This Enum consists of flag values that can be combined.
Declaration
public int value__
Field Value
Type | Description |
---|---|
Int32 |
Write
2: Write-only (not terribly useful)
Declaration
public const EFieldRight Write
Field Value
Type | Description |
---|---|
EFieldRight |
Extension Methods
EnumUtil.MapEnums<From, To>(From)