ComponentFactory.Krypton.Docking.KryptonDockableNavigator.OnCellPageInserting C# (CSharp) Method

OnCellPageInserting() protected method

Raises the CellPageInserting event.
protected OnCellPageInserting ( KryptonPageEventArgs e ) : void
e KryptonPageEventArgs An KryptonPageEventArgs containing the event data.
return void
        protected virtual void OnCellPageInserting(KryptonPageEventArgs e)
        {
            if (CellPageInserting != null)
                CellPageInserting(this, e);
        }