Grid.SetColumnResize

Grid.SetColumnResize (

string ObjectName,

boolean Resizable = true )

Example 1

-- can the columns be resized
bResize = Grid.GetColumnResize("Grid1");

-- if not then set the column resize to true
if not bResize then
Grid.SetColumnResize("Grid1", true);
end

Turns on the ability for the user to resize column, if it is currently disabled.

See also: Related Actions