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

OnDoDragDropQuit() protected method

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