ComponentFactory.Krypton.Docking.KryptonDockingManager.OnDockableWorkspaceCellRemoved C# (CSharp) 메소드

OnDockableWorkspaceCellRemoved() 보호된 메소드

Raises the DockableWorkspaceCellRemoved event.
protected OnDockableWorkspaceCellRemoved ( DockableWorkspaceCellEventArgs e ) : void
e DockableWorkspaceCellEventArgs An DockableWorkspaceCellEventArgs containing the event args.
리턴 void
        protected virtual void OnDockableWorkspaceCellRemoved(DockableWorkspaceCellEventArgs e)
        {
            if (DockableWorkspaceCellRemoved != null)
                DockableWorkspaceCellRemoved(this, e);
        }
KryptonDockingManager