Be.Windows.Forms.HexBox.SetSelectionLength C# (CSharp) Method

SetSelectionLength() private method

private SetSelectionLength ( long selectionLength ) : void
selectionLength long
return void
        void SetSelectionLength(long selectionLength)
        {
            if (selectionLength != _selectionLength)
            {
                _selectionLength = selectionLength;
                OnSelectionLengthChanged(EventArgs.Empty);
            }
        }
HexBox