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

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

Syntax

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

Parameters

ranges
Type: array<System.Drawing..::..Rectangle>[]()[][]
The list of rectangular areas to include in the group, each area is identified by a Rectangle structure 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.

See Also