AdvancedLauncher.Tools.Interop.RedirectedHwndSourceHost.TranslateCharCore C# (CSharp) Method

TranslateCharCore() protected final method

protected final TranslateCharCore ( System.Windows.Interop.MSG &msg, ModifierKeys modifiers ) : bool
msg System.Windows.Interop.MSG
modifiers ModifierKeys
return bool
        protected override sealed bool TranslateCharCore(ref MSG msg, ModifierKeys modifiers)
        {
            if (_hwndSource != null) {
                return ((IKeyboardInputSink)_hwndSource).TranslateChar(ref msg, modifiers);
            } else {
                return base.TranslateCharCore(ref msg, modifiers);
            }
        }