System.Windows.Forms.HexBox.SetVerticalByteCount C# (CSharp) Méthode

SetVerticalByteCount() private méthode

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

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