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

OnGlobalSaving() protected method

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