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

SetVerticalByteCount() private method

private SetVerticalByteCount ( int value ) : void
value int
return void
        void SetVerticalByteCount(int value)
        {
            if(_iHexMaxVBytes == value)
                return;

            _iHexMaxVBytes = value;
            OnVerticalByteCountChanged(EventArgs.Empty);
        }