Determines if the specified attribute is set (or any of the specified attributes are set if the attr value includes multiple
            attribute bits) in the specified property.  
            The property is assumed to be an int (presumably representing an enumeration) defaulting to zero if not found.
            
 
    Namespace: 
   NetQuarry
    Assembly:
   EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
 Syntax
Syntaxpublic bool IsAttrSet(
	string featureName,
	string propertyName,
	Enum attr
)
Public Function IsAttrSet ( 
	featureName As String,
	propertyName As String,
	attr As Enum
) As Boolean
Parameters
- featureName
- Type: SystemString
 The name of the feature.
- propertyName
- Type: SystemString
 The property name.
- attr
- Type: SystemEnum
 The attribute bit (or bits) to check.
Return Value
Type: 
BooleanTrue if the property exists and the specified attribute bit (or any of the specified bits) is set.
 See Also
See Also