ComponentFactory.Krypton.Docking.KryptonDockingManager.OnDockspaceSeparatorRemoved C# (CSharp) Method

OnDockspaceSeparatorRemoved() protected method

Raises the DockspaceSeparatorRemoved event.
protected OnDockspaceSeparatorRemoved ( DockspaceSeparatorEventArgs e ) : void
e DockspaceSeparatorEventArgs An DockspaceSeparatorEventArgs containing the event args.
return void
        protected virtual void OnDockspaceSeparatorRemoved(DockspaceSeparatorEventArgs e)
        {
            if (DockspaceSeparatorRemoved != null)
                DockspaceSeparatorRemoved(this, e);
        }
KryptonDockingManager