Click or drag to resize
GridControlSetCoveredCellsRowCol Method (UInt32, UInt32, UInt32, UInt32)
Sets the covered cells-range for a cell.

Namespace: Stingray.Grid
Assembly: Stingray.GridControl (in Stingray.GridControl.dll) Version: 14.0.0.0
Syntax
public bool SetCoveredCellsRowCol(
	uint row,
	uint col,
	uint toRow,
	uint toCol
)

Parameters

row
Type: SystemUInt32
The row index for the cell.
col
Type: SystemUInt32
Specifies the column id for the cell.
toRow
Type: SystemUInt32
The last row to cover.
toCol
Type: SystemUInt32
The last column to cover.

Return Value

Type: Boolean
true if the operation is successful, false otherwise.
Remarks
To cover cells means that one cell can span severals cells (for example, to display big headlines). To remove a covered range, call this method with only the top-left cell of the original covered range.

Equivalent to SetCoveredCellsRowCol(row, col, toRow, toCol, UpdateNow, Do).

See Also