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

OnInsertActiveChanged() protected method

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