Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Introducedin
8.3
8.3
Description

Excerpt

Sets or returns an Area object that represents the area of cells that the filter is applied to in the worksheet.

Signature
C#
C#
public Area Area{ get; set; }

Signature
vb.net
vb.net
Public Property Area() As Area
Example
Code Block
csharp
csharp
titleC#

//--- Get filter's Area
Area filterArea = autoFilter.Area;

//--- Set filter's Area
autoFilter.Area = filterArea;

Code Block
vb.net
vb.net
titlevb.net

'--- Get filter's Area
Dim filterArea As Area = autoFilter.Area

'--- Set filter's Area
autoFilter.Area = filterArea