Skip to main content
A newer version of this page is available. .

LayoutControl.HideItem(BaseLayoutItem) Method

Hides the specified layout item.

Namespace: DevExpress.XtraLayout

Assembly: DevExpress.XtraLayout.v19.1.dll

Declaration

public void HideItem(
    BaseLayoutItem item
)

Parameters

Name Type Description
item BaseLayoutItem

A BaseLayoutItem descendant which represents the layout item to hide.

Remarks

The LayoutControl stores its hidden items within the LayoutControl.HiddenItems collection. To verify whether an item is hidden use the BaseLayoutItem.IsHidden property.

End-users can hide and show layout items by moving them to or from the Customization Form via drag and drop. To show a hidden item use the BaseLayoutItem.RestoreFromCustomization method.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the HideItem(BaseLayoutItem) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also