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}
{signature:
}
Signature
vb.net
vb.net
Public Property Area() As Area
{signature}



{example}
{code:csharp|title=C#}
Example
Code Block
csharp
csharp
titleC#


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

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

{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}


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

'--- Set filter's Area
autoFilter.Area = filterArea
{code} {example}