ImageGlass.ImageBox.OnTextPaddingChanged C# (CSharp) Method

OnTextPaddingChanged() protected method

Raises the TextPaddingChanged event.
protected OnTextPaddingChanged ( EventArgs e ) : void
e System.EventArgs The instance containing the event data.
return void
        protected virtual void OnTextPaddingChanged(EventArgs e)
        {
            EventHandler handler;

            handler = TextPaddingChanged;

            Invalidate();

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