ImageGlass.ImageBox.OnPixelGridThresholdChanged C# (CSharp) Method

OnPixelGridThresholdChanged() protected method

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

            handler = PixelGridThresholdChanged;

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