show / hide menu

GridMin

This function is to get the Minimum value from a grid.

Syntax:

GridMin(GridControlName,Column Number,is page wise)

GridControlName is the name of the grid. The user will have to specify the column number from where the minimum value has to be retrieved. Is Page wise indicated whether the value has to be retrieved page wise or not. Is Page wise should be either true or false.

Example:

GridMin(dynamicgrid1, 2, false)

The function will return the least value from the second column.