Be.Windows.Forms.HexBox.OnReadOnlyChanged C# (CSharp) 메소드

OnReadOnlyChanged() 보호된 메소드

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