Click or drag to resize

FieldSubsetType Enumeration

Type of subset to obtain from a Fields collection using Subset(FieldSubsetType, Object).

Namespace:  NetQuarry.Data
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public enum FieldSubsetType
Members
  Member nameValueDescription
AttributeIsSet1 Get the subset of fields where any of the specified set of FieldAttrs is set. This is generally used to get the set of fields with a single attribute set, e.g. Locked. When this option is used, a set of FieldAttrs is passed to Subset(FieldSubsetType, Object) via its criteria parameter.
ByCellType2 Find all fields whose CellTypes matches the criteria. When this option is used the CellTypes is passed to Subset(FieldSubsetType, Object) via its criteria parameter.
RowKeys3 Get the subset of fields comprising the RowKeys for the associated IMapper. If there is a field marked as the UniqueKey then that field will be the sole field in the subset. If no field is marked as the UniqueKey, then the subset will consist of all fields marked as PK (primary key). When this option is used the Subset(FieldSubsetType, Object) its criteria parameter is ignored.
PropSet4 Get the subset of fields where the specified Properties value is specified on the field and that value is non-null and non-blank. When this option is used a string value is passed to Subset(FieldSubsetType, Object) via its criteria parameter.
Visible5 Get the subset of fields where the field is visible or hidden. The criteria parameter will be true (visible) or false (hidden). When this option is used a bool value is passed to Subset(FieldSubsetType, Object) via its criteria parameter.
Dirty6 Get the subset of fields where the field is dirty or not dirty. The criteria parameter will be true (dirty) or false (not dirty). When this option is used a bool value is passed to Subset(FieldSubsetType, Object) via its criteria parameter.
KeyInList7 Get the subset of fields identified in the semi-colon-separated list of field keys. When this option is used a string value is passed to Subset(FieldSubsetType, Object) via its criteria parameter.
See Also