Grid.GetModified

boolean Grid.GetModified (

string ObjectName,

number Row = -1,

number Column = -1 )

Description

Returns the modified flag for a cell, or if -1, -1 is passed in for row and column, it returns the status for the entire grid. That is, whether the cell or grid has been modified since it was created or the last call to Grid.SetModified.

Parameters

ObjectName

(string) The name of the grid object.

Row

(number) The (zero-based) index of the row. Pass -1 for row and column to get the modified value of the whole grid.

Column

(number) The (zero-based) index of the column. Pass -1 for row and column to get the modified value of the whole grid.

Returns

(boolean) Returns true if the cell or grid has been modified, or false if it has not. You can use Application.GetLastError to determine whether this action failed, and why.

ResultVariable

When adding an action with the script editor, you can use this field to specify a variable that the return value will be stored in.

See also: Related Actions