Click or drag to resize
GridControlMoveRows Method (UInt32, UInt32, UInt32)
Moves the specified block of rows to another location.

Namespace: Stingray.Grid
Assembly: Stingray.GridControl (in Stingray.GridControl.dll) Version: 14.0.0.0
Syntax
public bool MoveRows(
	uint fromRow,
	uint toRow,
	uint destRow
)

Parameters

fromRow
Type: SystemUInt32
The first row.
toRow
Type: SystemUInt32
The last row.
destRow
Type: SystemUInt32
The destination row.

Return Value

Type: Boolean
true if the operation is successful, false otherwise.
Remarks
Equivalent to MoveRows(fromRow, toRow, destRow, UpdateNow, Do).
See Also