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

SetSelectionLength() private méthode

private SetSelectionLength ( long selectionLength ) : void
selectionLength long
Résultat void
        void SetSelectionLength(long selectionLength)
        {
            if(selectionLength != _selectionLength)
            {
                _selectionLength = selectionLength;
                OnSelectionLengthChanged(EventArgs.Empty);
            }
        }