ImageGlass.ImageBox.OnSelecting C# (CSharp) Method

OnSelecting() protected method

Raises the Selecting event.
protected OnSelecting ( ImageBoxCancelEventArgs e ) : void
e ImageBoxCancelEventArgs /// The instance containing the event data. ///
return void
        protected virtual void OnSelecting(ImageBoxCancelEventArgs e)
        {
            EventHandler<ImageBoxCancelEventArgs> handler;

            handler = Selecting;

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