Click or drag to resize
GridControlInsertRows Method (UInt32, Int32, 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,
	int[] heightArray
)

Parameters

row
Type: SystemUInt32
The row index where the new rows are inserted.
count
Type: SystemInt32
The number of rows to insert.
heightArray
Type: SystemInt32
An array with the row heights for the inserted rows.

Return Value

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