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

OnVerticalByteCountChanged() 보호된 메소드

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