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

OnDockspaceCellAdding() protected méthode

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