Click or drag to resize
GridControlSetRowHeight Method (UInt32, UInt32, Int32)
Sets the height of the specified rows.

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

Parameters

fromRow
Type: SystemUInt32
The first row index.
toRow
Type: SystemUInt32
The last row index.
height
Type: SystemInt32
The new height of all the indicated rows, in pixels.

Return Value

Type: Boolean
true if the command is successfully executed; false if the command fails or if the user aborts the operation.
Remarks
Equivalent to SetRowHeight(fromRow, toRow, height, nullptr, UpdateNow, Do).
See Also