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

OnReadOnlyChanged() protected method

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