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

OnBytesPerLineChanged() protected method

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