ShowAsSidePaneAction Class

DevZest WPF Docking

ShowAsSidePaneAction Class
Represents the action to show source DockItem as DockPane, side by side of target DockPaneNode.
Inheritance Hierarchy
SystemObject  System.Windows.MarkupMarkupExtension
    DevZest.Windows.DockingShowAction
      DevZest.Windows.DockingShowInDockTreeAction
        DevZest.Windows.DockingShowAsSidePaneAction

Namespace: DevZest.Windows.Docking
Assembly: DevZest.WpfDocking (in DevZest.WpfDocking.dll) Version: 2.5.0.0 (2.5.5912.0)
Syntax
public sealed class ShowAsSidePaneAction : ShowInDockTreeAction
Public NotInheritable Class ShowAsSidePaneAction
	Inherits ShowInDockTreeAction

The ShowAsSidePaneAction type exposes the following members.

Constructors
  NameDescription
Public methodShowAsSidePaneAction
Initializes a new instance of the ShowAsSidePaneAction class.
Top
Properties
  NameDescription
Public propertyAncestorLevel
Gets or sets the level of ancestor to look for target DockPaneNode.
Public propertyIsAutoHide
Gets or sets the value indicates whether to be created DockPane is auto hide.
Public propertyIsFloating
Gets or sets a value indicates whether target DockTree is floating.
(Inherited from ShowInDockTreeAction.)
Public propertyIsSizeForTarget
Gets or sets the value indicates whether Size is for to be created DockPane or target DockPaneNode.
Public propertyShowMethod
Gets or sets the show method for the action.
(Inherited from ShowAction.)
Public propertySide
Gets or sets a value indicates the source DockItem shows on which side of target DockPaneNode.
Public propertySize
Gets or sets the size of to be created DockPane or target DockPaneNode, depending on the value of IsSizeForTarget.
Public propertySource
Gets or sets the source DockItem.
(Inherited from ShowAction.)
Public propertyTarget
Gets or sets the target DockItem.
(Inherited from ShowInDockTreeAction.)
Top
Remarks
This show action corresponds Show(DockPaneNode, Boolean, Dock, SplitterDistance, Boolean, DockItemShowMethod) method. The target DockPaneNode is determined by the combination of Target, IsFloating and AncestorLevel properties: Target and IsFloating properties determines the leaf DockPane node in the DockTree, the optional AncestorLevel property determines the extra level(s) to walk up the tree.
See Also