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

OnByteProviderChanged() 보호된 메소드

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