FieldSubsetType Enumeration |
Namespace:
NetQuarry.Data
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public enum FieldSubsetType
Public Enumeration FieldSubsetType
Members
| Member name | Value | Description |
---|
| AttributeIsSet | 1 |
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.
|
| ByCellType | 2 |
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.
|
| RowKeys | 3 |
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.
|
| PropSet | 4 |
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.
|
| Visible | 5 |
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.
|
| Dirty | 6 |
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.
|
| KeyInList | 7 |
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