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

OnAutoHiddenGroupRemoved() protected method

Raises the AutoHiddenGroupRemoved event.
protected OnAutoHiddenGroupRemoved ( AutoHiddenGroupEventArgs e ) : void
e AutoHiddenGroupEventArgs An AutoHiddenGroupEventArgs containing the event args.
return void
        protected virtual void OnAutoHiddenGroupRemoved(AutoHiddenGroupEventArgs e)
        {
            if (AutoHiddenGroupRemoved != null)
                AutoHiddenGroupRemoved(this, e);
        }
KryptonDockingManager