show / hide menu

GridSetColVisible

This function is used to set the visibility of a column.

Syntax:

GridSetColVisible(GridControlName,Column Index,Visibile)

GridControlName is the name of the grid. The user will have to specify the column index to which this property has to be set. Visibile should be either true or false.

Example:

GridSetColVisible(dynamicgrid1, 2, false)

The function will hide the second column in the dynamic grid.