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

ActivateEmptyKeyInterpreter() private method

private ActivateEmptyKeyInterpreter ( ) : void
return void
        void ActivateEmptyKeyInterpreter()
        {
            if (_eki == null)
                _eki = new EmptyKeyInterpreter(this);

            if (_eki == _keyInterpreter)
                return;

            if (_keyInterpreter != null)
                _keyInterpreter.Deactivate();

            _keyInterpreter = _eki;
            _keyInterpreter.Activate();
        }
HexBox