Defines a rectangular Area of cells in the worksheet.

 public Area CreateArea(int firstRow, int firstColumn, int numRows, int numColumns)
Public Function CreateArea(ByVal firstRow As Integer, ByVal firstColumn As Integer, ByVal numRows As Integer, ByVal numColumns As Integer) As Area

0-based first row of the area.

0-based first column of the area.

Number of rows in the area. Maximum: 65536.

Number of columns in the area. Maximum: 256.

An Area object.

Area a = ws.CreateArea(4, 4, 15, 6);
Dim a As Area = ws.CreateArea(4, 4, 15, 6)