ImageGlass.ImageBox.OnInvertMouseChanged C# (CSharp) Method

OnInvertMouseChanged() protected method

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

            handler = InvertMouseChanged;

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