Be.Windows.Forms.HexBox.SetHorizontalByteCount C# (CSharp) Méthode

SetHorizontalByteCount() private méthode

private SetHorizontalByteCount ( int value ) : void
value int
Résultat void
        void SetHorizontalByteCount(int value)
        {
            if (_iHexMaxHBytes == value)
                return;

            if(value > _minBytesPerLine)
            {
                _iHexMaxHBytes = value;
            }
            else
            {
                _iHexMaxHBytes = _minBytesPerLine;
            }
            OnHorizontalByteCountChanged(EventArgs.Empty);
        }
HexBox