Grid.SetModified

Grid.SetModified (

string ObjectName,

boolean Modified = true,

number Row = -1,

number Column = -1 )

Description

Sets the modified flag for a cell in a grid object. If row and column are set to -1, the change affects the entire grid object.

Parameters

ObjectName

(string) The name of the grid object.

Modified

(boolean) Whether the cell or grid is set as modified. This is an optional argument and if omitted will default to true.

VALUE

DESCRIPTION

true

Set the cell or grid as modified.

false

Don't set the cell or grid as modified.

Row

(number) The (zero-based) index of the row. Use -1 if you want to set the entire grid as modified.

Column

(number) The (zero-based) index of the column. Use -1 if you want to set the entire grid as modified.

Returns

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

See also: Related Actions