Click or drag to resize
GridControlCopyCells Method (Range, UInt32, UInt32)
Copies a range of cells to a specified location in the grid.

Namespace: Stingray.Grid
Assembly: Stingray.GridControl (in Stingray.GridControl.dll) Version: 14.0.0.0
Syntax
public bool CopyCells(
	Range range,
	uint row,
	uint col
)

Parameters

range
Type: Stingray.GridRange
The range of cells to copy.
row
Type: SystemUInt32
The destination row.
col
Type: SystemUInt32
The destination column.

Return Value

Type: Boolean
true if the operation is successful, false otherwise.
Remarks
Equivalent to CopyCells(range, row, col, UpdateNow).
See Also