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

Parameters

fromRow
Type: SystemUInt32
The first row index.
toRow
Type: SystemUInt32
The last row index.
height
Type: SystemInt32
The new height for all the indicated rows, in pixels.
heightArray
Type: SystemInt32
Holds the new heights for the specified rows. If it is nullptr, height is used for all the indicated rows.

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, heightArray, UpdateNow, Do).
See Also