System.Windows.Forms.HexBox.ActivateKeyInterpreter C# (CSharp) Method

ActivateKeyInterpreter() private method

private ActivateKeyInterpreter ( ) : void
return void
        void ActivateKeyInterpreter()
        {
            if(_ki == null)
                _ki = new KeyInterpreter(this);

            if(_ki == _keyInterpreter)
                return;

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

            _keyInterpreter = _ki;
            _keyInterpreter.Activate();
        }