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

OnDockspaceCellAdding() protected method

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