Skip to main content

TcxGridLevel.Visible Property

Specifies whether the current level can be displayed.

Declaration

property Visible: Boolean read; write; default True;

Property Value

Type Default
Boolean True

Remarks

The Visible property specifies the visibility of the current level. If Visible is set to False, the level and the View associated with it will not be displayed.

If the current level is the child one and the Visible property of the parent level is set to False, the level will not be displayed. See the ActuallyVisible property to know whether the current level can be actually displayed. If the Visible property of the current level and all its parent levels is True, then ActuallyVisible returns True.

To make a particular grid level (both root and child level) visible, call its MakeVisible method.

The default value of the Visible property is True.

See Also