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

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

{signature}



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

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

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

{code}
{code:vb.net
|title=vb.net
}

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

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

{example}
Signature
C#C#
}
{description}

{excerpt}
Sets or returns an [Area|Area] object that represents the area of cells that the filter is applied to in the worksheet.
{excerpt}

{signature:C#}
public Area Area{ get; set; }

Signature
{signature}
{signature:vb.net
vb.net
}
Public Property Area() As Area
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle