Be.Windows.Forms.HexBox.SetSelectionLength C# (CSharp) 메소드

SetSelectionLength() 개인적인 메소드

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