Initializes a new instance of the UserCellGroup class, includes a range of cells identified by a list of cell coordinates, in the group.

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

Syntax

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

Parameters

cells
Type: array<System.Drawing..::..Point>[]()[][]
The list of cell coordinates to include in the group, each cell is identified by a Point structure as follows:
  • X is the column index of the cell;
  • Y is the row index of the cell.

See Also