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

OnByteProviderChanged() protected method

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