ComponentFactory.Krypton.Docking.KryptonDockingManager.OnDockspaceCellRemoved C# (CSharp) Méthode

OnDockspaceCellRemoved() protected méthode

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