Click or drag to resize
GridControlHideRows Method (UInt32, UInt32, Boolean, RedrawFlags)
Hides the specified rows.

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

Parameters

fromRow
Type: SystemUInt32
The first row to hide.
toRow
Type: SystemUInt32
The last row to hide.
hide
Type: SystemBoolean
The visible flag for all rows.
redraw
Type: Stingray.GridRedrawFlags
The redraw technique. It can take the following values:

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 HideRows(fromRow, toRow, hide, redraw, Do).
See Also