Click or drag to resize
GridControlInsertRows Method (UInt32, Int32)
Inserts rows.

Namespace: Stingray.Grid
Assembly: Stingray.GridControl (in Stingray.GridControl.dll) Version: 14.0.0.0
Syntax
public bool InsertRows(
	uint row,
	int count
)

Parameters

row
Type: SystemUInt32
The row index where the new rows are inserted.
count
Type: SystemInt32
The number of rows to insert.

Return Value

Type: Boolean
true if the operation is successful, false otherwise.
Remarks
Equivalent to InsertRows(row, count, nullptr, UpdateNow, Do).
See Also