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

OnFloatspaceCellRemoved() protected method

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