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

OnVerticalByteCountChanged() protected method

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