IsUserHidden property: GridColumn class

Description

This property specifies whether a user hid a grid column in grid personalization.

Note:

If the visible property of a grid column is set to true, and if it is also set to IsUserHidden, then the grid column is not displayed to the user at runtime.

This property is read-only.

Example

If &StatCol.IsUserHidden Then
   WinMessage("Status column is User Hidden");
Else
   WinMessage("Status Column is Not User Hidden");
End-If;