Enum FieldFlags
A list of possible field flags.
[Flags]
public enum FieldFlags
- Extension Methods
Fields
Boolean = 32It is an integer field that must be displayed in a check box control. 0 = false, 1 = true.
Extra = 4096The field does NOT exist in the database. It just added to the DataTable schema for some reason.
ForeignKey = 2048A foreign key field
Hidden = 1Must be hidden
Image = 256Field is an image, i.e. png, jpg, etc.
ImagePath = 512Field is a path to an image.
LargeMemo = 128Field is a α large multiline text
Memo = 64Field is a multiline text
NoInsertUpdate = 1024The field is not used with INSERT or UPDATE statements.
It maybe something like the ExtraField or an identity/autoinc field, in a position other than that of a primary key
None = 0Container of the flags is set
ReadOnly = 2Determines whether the field can be modified
ReadOnlyEdit = 8The field is editable when inserting only
ReadOnlyUI = 4Concerns controls that display the field
Required = 16Can not be null
Searchable = 8192Field is searchable and can be a part of a filter.