ComponentFactory.Krypton.Docking.KryptonDockspaceSeparator.KryptonDockspaceSeparator C# (CSharp) Method

KryptonDockspaceSeparator() public method

Initialize a new instance of the KryptonDockspaceSeparator class.
public KryptonDockspaceSeparator ( DockingEdge edge, bool opposite ) : System
edge DockingEdge Docking edge the separator is against.
opposite bool Should the separator be docked against the opposite edge.
return System
        public KryptonDockspaceSeparator(DockingEdge edge, bool opposite)
        {
            // Setup docking specific settings for the separator
            Dock = DockingHelper.DockStyleFromDockEdge(edge, opposite);
            Orientation = DockingHelper.OrientationFromDockEdge(edge);
            SeparatorStyle = SeparatorStyle.LowProfile;
        }
KryptonDockspaceSeparator