ImageGlass.ImageBox.OnDropShadowSizeChanged C# (CSharp) Method

OnDropShadowSizeChanged() protected method

Raises the DropShadowSizeChanged event.
protected OnDropShadowSizeChanged ( EventArgs e ) : void
e System.EventArgs /// The instance containing the event data. ///
return void
        protected virtual void OnDropShadowSizeChanged(EventArgs e)
        {
            Invalidate();

            EventHandler handler;

            handler = DropShadowSizeChanged;

            if (handler != null)
            {
                handler(this, e);
            }
        }
ImageBox