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

OnHorizontalByteCountChanged() protected method

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