ImageGlass.ImageBox.OnLimitSelectionToImageChanged C# (CSharp) Method

OnLimitSelectionToImageChanged() protected method

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

            handler = LimitSelectionToImageChanged;

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