Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

Wiki Markup
{introducedin: 8.3

...

Description

Excerpt

The AutoFilter class represents the filter that is applied to a selected area of cells in a worksheet.

Properties

...

Name

...

Description

...

Area

...

Methods

...

Name

...

Description

...

Clear()

...

|Worksheet.AutoFilter].

There is only one auto filter per worksheet; by default, the filter is not set and [AutoFilter.Area] will return {{null}}. 

When applying an auto filter to a select area of cells on a worksheet, bear in mind:
# [AutoFilter.Area] must be set to an [Area] object on the same worksheet as the auto filter. 
# There is only one auto filter per worksheet. If [AutoFilter.Area] is already set, changing {{AutoFilter.Area}} will overwrite the previous area and the auto filter will be applied to the new area. 
# {{AutoFilter.Area}} must include all of the cells that the filter applies to. ExcelWriter will not automatically detect the boundaries of the filtered area. 

The filter will be removed from the worksheet either by calling the filter's [Clear()|AutoFilter.Clear()] method, by setting the {{Area}} property to {{null}}, or by deleting all the rows (or just the first row that has the filter headers) or all the columns of the filter from the worksheet.

{remarks}

{example}
{code:csharp|title=C#}

ExcelApplication xla = new ExcelApplication();
Workbook wb = xla.Create(ExcelApplication.FileFormat.Xlsx);
AutoFilter autoFilter = wb.Worksheets[0].AutoFilter;
{code}
{code:vbnet|title=vb.net
}

Dim xla As New ExcelApplication()
Dim wb As Workbook = xla.Create(ExcelApplication.FileFormat.Xlsx)
Dim autoFilter As AutoFilter = wb.Worksheets(0).AutoFilter
Signature
C#C#
}
{description}

{excerpt}

The [AutoFilter|AutoFilter] class represents the filter that is applied to a selected area of cells in a worksheet.
{excerpt}

{signature:C#}
public sealed class AutoFilter

Signature
{signature}

{signature:vb.net
vb.net
}
Public NotInheritable Class AutoFilter

Remarks
To return an AutoFilter object, use
{signature}

{remarks}
To return an {{AutoFilter}} object, use [Worksheet.AutoFilter
.

There is only one auto filter per worksheet; by default, the filter is not set and AutoFilter.Area will return null.

When applying an auto filter to a select area of cells on a worksheet, bear in mind:

  1. AutoFilter.Area must be set to an Area object on the same worksheet as the auto filter.
  2. There is only one auto filter per worksheet. If AutoFilter.Area is already set, changing AutoFilter.Area will overwrite the previous area and the auto filter will be applied to the new area.
  3. AutoFilter.Area must include all of the cells that the filter applies to. ExcelWriter will not automatically detect the boundaries of the filtered area.

The filter will be removed from the worksheet either by calling the filter's Clear() method, by setting the Area property to null, or by deleting all the rows (or just the first row that has the filter headers) or all the columns of the filter from the worksheet.

Example
Code Block
csharpcsharp
titleC#
Code Block
vbnetvbnettitle
Exceptions

...

An exception of type ArgumentException will be thrown if the AutoFilter.Area property is set to an area that is on a different worksheet, or an empty area that doesn't have any data in it.

{code}

{example}

{exceptions}

{exception:ArgumentException}
An exception of type {{ArgumentException}} will be thrown if the {{AutoFilter.Area}} property is set to an area that is on a different worksheet, or an empty area that doesn't have any data in it.
{exception}

{properties}
|| Name || Description ||
| [Area|AutoFilter.Area] | {excerpt-include:AutoFilter.Area|nopanel=true} |


{methods}
|| Name || Description ||
| [Clear()|AutoFilter.Clear()] | {excerpt-include:AutoFilter.Clear()

...

|nopanel

...

=true} |