Click or drag to resize
GridControlRemoveCols Method (UInt32, UInt32)
Removes a block of columns.

Namespace: Stingray.Grid
Assembly: Stingray.GridControl (in Stingray.GridControl.dll) Version: 14.0.0.0
Syntax
public bool RemoveCols(
	uint fromCol,
	uint toCol
)

Parameters

fromCol
Type: SystemUInt32
The first column.
toCol
Type: SystemUInt32
The last column.

Return Value

Type: Boolean
true if the operation is successful, false otherwise.
Remarks
Equivalent to RemoveCols(fromCol, toCol, UpdateNow, Do).
See Also