Defines a rectangular Area of cells in the worksheet.

 public Area CreateArea(System.String areaFormula)
Public Function CreateArea(ByVal areaFormula As String) As Area

A formula representing the area, e.g. "A3:B5". The formula must be local to the worksheet and should not contain a sheet reference.

An Area object.

Area a = ws.CreateArea("B7:H24");
Dim a As Area = ws.CreateArea("B7:H24")