show / hide menu

GridSetValue

This function is used to set the Grid Cell value.

Syntax:

GridSetValue(GridControlName,Row Index,Column Index,Value)

GridControlName is the name of the grid. The user will have to specify the column index and the row index of the cell to which the value has to be set.

Example:

GridSetValue(dynamicgrid1, 5, 2, “Test”)

The function will change the cell value to “Test”.