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

ActivateStringKeyInterpreter() private method

private ActivateStringKeyInterpreter ( ) : void
return void
        void ActivateStringKeyInterpreter()
        {
            if (_ski == null)
                _ski = new StringKeyInterpreter(this);

            if (_ski == _keyInterpreter)
                return;

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

            _keyInterpreter = _ski;
            _keyInterpreter.Activate();
        }
        #endregion
HexBox