FieldKernelIsAttrSet Method |
Determines if a particular attribute (or any of a set of attributes) is set.
Note that this is a shorthand for the expression (0 != (field.Attributes & attributes)) (C#)
or (0 <> (field.Attributes Or attributes)) (VB).
Namespace:
NetQuarry.Data
Assembly:
EAP.Mapper (in EAP.Mapper.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public bool IsAttrSet(
FieldAttrs attributes
)
Public Function IsAttrSet (
attributes As FieldAttrs
) As Boolean
Parameters
- attributes
- Type: NetQuarry.DataFieldAttrs
The attribute or attributes to check.
Return Value
Type:
BooleanTrue if any of the specified attributes are set on the field.
Implements
IFieldIsAttrSet(FieldAttrs)See Also