Click or drag to resize
GridControlMoveCols Method (UInt32, UInt32, UInt32)
Moves the specified block of columns to another location.

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

Parameters

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

Return Value

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