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.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax bool IsAttrSet(
FieldAttrs attributes
)
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.
See Also