Click or drag to resize

FieldFindType Enumeration

Find types for use with Find(String, FieldFindType, FindBehaviour) to find specific fields in a Fields collection.

Namespace:  NetQuarry.Data
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public enum FieldFindType
Members
  Member nameValueDescription
ByKey1Find field by IField.Key.
ByCtrlNm2Find field by IField.ControlName.
PK3Find the first field marked as a PK (primary key).
ByAlias4Find field by IField.AliasName.
UniqueKey5 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.
ByCtrlUniqueId6 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.
ByFieldID7 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.
AlternateKey8 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