Grid.SetColumnResize

Grid.SetColumnResize ( 

string  ObjectName,

boolean Resizable = true )

Description

Sets whether or not columns are resizable by the user in a grid object. Columns are always resizable from actions such as Grid.SetColumnWidth.

Parameters

ObjectName

(string) The name of the grid object.

Resizable

(boolean) Whether columns can be resized. This is an optional argument and if omitted will default to true.

VALUE

DESCRIPTION

true

Columns can be resized. (Default)

false

Columns cannot be resized.

Returns

Nothing. You can use Application.GetLastError to determine whether this action failed, and why.

See also:  Related Actions