<filterColumn> (AutoFilter Column)

The filterColumn collection identifies a particular column in the AutoFilter range and specifies filter information that has been applied to this column. If a column in the AutoFilter range has no criteria specified, then there is no corresponding filterColumn collection expressed for that column.

Parent Elements

<autoFilter>3.3.1.1)

Child Elements

Subclause

<colorFilter> (Color Filter Criteria)

§3.3.2.1

<customFilters> (Custom Filters)

§3.3.2.3

<dynamicFilter> (Dynamic Filter)

§3.3.2.5

<extLst> (Future Feature Data Storage Area)

§3.2.10

<filters> (Filter Criteria)

§3.3.2.8

<iconFilter> (Icon Filter)

§3.3.2.9

<top10> (Top 10)

§3.3.2.10

Attributes

Description

<colId> (Filter Column Data)

Zero-based index indicating the AutoFilter column to which this filter information applies.

The possible values for this attribute are defined by the XML Schema unsignedInt datatype.

<hiddenButton> (Hidden AutoFilter Button)

Flag indicating whether the AutoFilter button for this column is hidden.

The possible values for this attribute are defined by the XML Schema boolean datatype.

<showButton> (Show Filter Button)

Flag indicating whether the filter button is visible. For example, when the cell containing the filter button is merged with another cell, the filter button may be hidden, and not drawn.

The possible values for this attribute are defined by the XML Schema boolean datatype.

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_FilterColumn">
	<choice minOccurs="0" maxOccurs="1">
	<element name="filters" type="CT_Filters" minOccurs="0" maxOccurs="1"/>
	<element name="top10" type="CT_Top10" minOccurs="0" maxOccurs="1"/>
	<element name="customFilters" type="CT_CustomFilters" minOccurs="0" maxOccurs="1"/>
	<element name="dynamicFilter" type="CT_DynamicFilter" minOccurs="0" maxOccurs="1"/>
	<element name="colorFilter" type="CT_ColorFilter" minOccurs="0" maxOccurs="1"/>
	<element name="iconFilter" minOccurs="0" maxOccurs="1" type="CT_IconFilter"/>
	<element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
	</choice>
	<attribute name="colId" type="xsd:unsignedInt" use="required"/>
	<attribute name="hiddenButton" type="xsd:boolean" use="optional" default="false"/>
	<attribute name="showButton" type="xsd:boolean" use="optional" default="true"/>
</complexType>