[]
Initializes a new instance of the UserCellGroup class, includes a range of cells identified by a rectangular area, in the group.
public UserCellGroup(Rectangle range)
Type | Name | Description |
---|---|---|
Rectangle | range | Identifies a rectangluar range of cells as follows:
|
Initializes a new instance of the UserCellGroup class, includes a single cell identified by its coordinates, in the group.
public UserCellGroup(Point cell)
Type | Name | Description |
---|---|---|
Point | cell | Identifies a cell as follows:
|
Initializes a new instance of the UserCellGroup class, includes a range of cells identified by a list of rectangular areas, in the group.
public UserCellGroup(params Rectangle[] ranges)
Type | Name | Description |
---|---|---|
Rectangle[] | ranges | The list of rectangular areas to include in the group, each area is identified by a Rectangle structure as follows: |
Initializes a new instance of the UserCellGroup class, includes a range of cells identified by a list of cell coordinates, in the group.
public UserCellGroup(params Point[] cells)
Type | Name | Description |
---|---|---|
Point[] | cells | The list of cell coordinates to include in the group, each cell is identified by a Point structure as follows: |
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.
public UserCellGroup(params object[] areas)
Type | Name | Description |
---|---|---|
object[] | areas | 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:
|