Be.Windows.Forms.HexBox.SetVerticalByteCount C# (CSharp) Метод

SetVerticalByteCount() приватный Метод

private SetVerticalByteCount ( int value ) : void
value int
Результат void
        void SetVerticalByteCount(int value)
        {
            if (_iHexMaxVBytes == value)
                return;

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