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

OnDockspaceCellAdding() 보호된 메소드

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