Click or drag to resize
GridControlRemoveRows Method (UInt32, UInt32)
Removes a block of rows.

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

Parameters

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

Return Value

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