Page tree

Versions Compared

Key

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

Excerpt

Returns a rectanglular area of cells from the first (top, left) populated cell to the last (bottom, right) populated cell in the Area. The Area returned will include cells that contain no data but have been formatted.

{signature}
{example}{code:csharp|title=C#}
Area populated = a.PopulatedCells;
{code}
{code:vbnet|title=vb.net
}
Dim populated As Area = a.PopulatedCells
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a rectanglular area of cells from the first \(top, left\) populated cell to the last \(bottom, right\) populated cell in the Area. The Area returned will include cells that contain no data but have been formatted.{excerpt}
{signature:C#}
 public Area PopulatedCells{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property PopulatedCells() As Area
Example
Code Block
csharpcsharp
titleC#
Code Block
vbnetvbnettitle

...

{code}

{example}
{scrollbar}