System.Windows.Forms.HexBox.OnSelectionStartChanged C# (CSharp) Method

OnSelectionStartChanged() protected method

Raises the SelectionStartChanged event.
protected OnSelectionStartChanged ( EventArgs e ) : void
e EventArgs An EventArgs that contains the event data.
return void
        protected virtual void OnSelectionStartChanged(EventArgs e)
        {
            if(SelectionStartChanged != null)
                SelectionStartChanged(this, e);
        }