FieldFindType Enumeration |
Namespace:
NetQuarry.Data
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public enum FieldFindType
Public Enumeration FieldFindType
Members
| Member name | Value | Description |
---|
| ByKey | 1 | Find field by IField.Key. |
| ByCtrlNm | 2 | Find field by IField.ControlName. |
| PK | 3 | Find the first field marked as a PK (primary key). |
| ByAlias | 4 | Find field by IField.AliasName. |
| UniqueKey | 5 |
Find the field marked UniqueKey (there should be at most one),
or if no such field and there is exactly one field marked as PK, that field.
|
| ByCtrlUniqueId | 6 |
Find field by it's BaseControl's fully qualified UniqueID.
Ignores fields having no BaseControl bound control.
Until the DOM has been constructed, ID's will not be fully qualified.
|
| ByFieldID | 7 |
Find field by it's GUID (xmt_fields.field_id).
This is used by the Properties and TextItems loaders and is really intended for internal use. |
| AlternateKey | 8 |
Find the field marked as an AlternateKey, or if no such field and there is
exactly one field marked as PK, that field.
|
See Also