ImageGlass.ImageBox.OnSelectionRegionChanged C# (CSharp) Method

OnSelectionRegionChanged() protected method

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

            Invalidate();

            handler = SelectionRegionChanged;

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