ImageGlass.ImageBox.OnScaleTextChanged C# (CSharp) Method

OnScaleTextChanged() protected method

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

            Invalidate();

            handler = ScaleTextChanged;

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