Initializes a new instance of the UserCellGroup class, includes a range of cells identified by a list of rectangular areas or individual cell coordnates, in the group.

Namespace:  C1.C1Preview
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public UserCellGroup(
	params Object[] areas
)
Visual Basic
Public Sub New ( _
	ParamArray areas As Object() _
)

Parameters

areas
Type: array<System..::..Object>[]()[][]

The list of rectangular areas or individual cell coordnates to include in the group, each item in the list may be either a Rectangle or a Point structure.

If the item is a Rectangle, it identifies an area to include as follows:
  • X is the column index of the top left cell;
  • Y is the row index of the top left cell;
  • Width is the number of columns;
  • X is the number of rows.
If the item is a Point, it identifies a cell to include as follows:
  • X is the column index of the cell;
  • Y is the row index of the cell.

See Also