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

OnDockspaceCellRemoved() protected method

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