{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:vb.net}
Public ReadOnly Property PopulatedCells() As Area
{signature}
{example}{code:csharp|title=C#}
Area populated = a.PopulatedCells;{code}
{code:vbnet|title=vb.net}
Dim populated As Area = a.PopulatedCells{code}

{example}
{scrollbar}