show / hide menu

GridGetValue

This function is used to get the grid value from a grid control such as Dynamic Grid and Search Grid.

Syntax:

GridGetValue(GridControlName,Row Index,Column Index).

The First argument is the grid name. The Second argument is the Row index of the grid cell. The third argument is the Column index of the grid cell.

Example:

Textbox1.Value= GridGetValue(dynamicGrid1, 2, 1)

The function will return the value in the row index 2 and Column index 1.