Grid.InsertColumn

number Grid.InsertColumn (

string ObjectName,

number InsertPosition,

boolean Redraw = true )

Example 1

nIndex = Grid.InsertColumn("Grid1", 2, true);

Adds a new column in position 2

Example 2

result = Grid.InsertColumn("Grid1", -1, true);

Adds a new column to the end of the grid

See also: Related Actions