Xceed Toolkit Plus for WPF v5.0 Documentation
Xceed.Wpf.AvalonDock Assembly / Xceed.Wpf.AvalonDock.Layout Namespace / LayoutAnchorable Class / IsHidden Property


In This Topic
    IsHidden Property
    In This Topic
    Gets whether the anchorable can be hidden.
    Syntax
    'Declaration
     
    <XmlIgnoreAttribute()>
    Public ReadOnly Property IsHidden As Boolean
    'Usage
     
    Dim instance As LayoutAnchorable
    Dim value As Boolean
     
    value = instance.IsHidden
    [XmlIgnore()]
    public bool IsHidden {get;}

    Property Value

    true if the anchorable can be hidden; false otherwise.
    Remarks

    When an anchorable is hidden, its IsVisible property is changed to false and IsHidden is set to true. As a result, it is not displayed at all (not autohidden, i.e., collapsed to one side of the docking manager). However, it is not removed from the layout. Handle the Hiding event to cancel the Hide operation if necessary.

    When an anchorable is closed, it is entirely removed from the layout.

    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also