System.Windows.Forms.HexBox.ActivateEmptyKeyInterpreter C# (CSharp) 메소드

ActivateEmptyKeyInterpreter() 개인적인 메소드

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

            if(_eki == _keyInterpreter)
                return;

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

            _keyInterpreter = _eki;
            _keyInterpreter.Activate();
        }