Click or drag to resize

FieldInterfaceExtensionsIsCellAttrSet Method

Determines if the specified CellTypeAttribute is set on the field. See CellTypeAttributes for the list of enumerations to use per CellTypes. A CellTypeAttribute is valid only for a particular CellTypes (since the bits are reused for other CellTypes), both the CellType and CellTypeAttributes are checked.

Namespace:  NetQuarry.Data
Assembly:  EAP.Mapper (in EAP.Mapper.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public static bool IsCellAttrSet(
	this IField fld,
	CellTypes cellType,
	Enum cellAttribute
)

Parameters

fld
Type: NetQuarry.DataIField
The field to check.
cellType
Type: NetQuarry.DataCellTypes
The type of cell to which this applies.
cellAttribute
Type: SystemEnum
The attribute to check, from any.

Return Value

Type: Boolean
True if CellType matches and attribute is set.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IField. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also