Click or drag to resize
GridControlInsertCols Method (UInt32, Int32)
Inserts columns.

Namespace: Stingray.Grid
Assembly: Stingray.GridControl (in Stingray.GridControl.dll) Version: 14.0.0.0
Syntax
public bool InsertCols(
	uint col,
	int count
)

Parameters

col
Type: SystemUInt32
The column index where the new colums are inserted.
count
Type: SystemInt32
The number of columns to insert.

Return Value

Type: Boolean
true if the operation is successful, false otherwise.
Remarks
Equivalent to InsertCols(col, count, nullptr, UpdateNow, Do).
See Also