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

OnInsertActiveChanged() protected method

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