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

OnPageSaving() protected méthode

Raises the PageSaving event.
protected OnPageSaving ( DockPageSavingEventArgs e ) : void
e DockPageSavingEventArgs An DockPageSavingEventArgs containing event data.
Résultat void
        protected virtual void OnPageSaving(DockPageSavingEventArgs e)
        {
            if (PageSaving != null)
                PageSaving(this, e);
        }
KryptonDockingManager