System.Windows.Forms.HexBox.OnHexCasingChanged C# (CSharp) 메소드

OnHexCasingChanged() 보호된 메소드

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