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

OnPageSaving() protected method

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