Microsoft.ManagementConsole.PropertyPageContainerControl.ProcessDialogChar C# (CSharp) Method

ProcessDialogChar() protected method

protected ProcessDialogChar ( char charCode ) : bool
charCode char
return bool
        protected override bool ProcessDialogChar(char charCode)
        {
            bool flag = false;
            if (charCode != ' ')
            {
                if (!this.ProcessMnemonic(charCode))
                {
                    this._ownerPage.ParentSheet.ProcessDialogKey(this._ownerPage.Id, Keys.None);
                }
                flag = true;
            }
            if (!flag)
            {
                return base.ProcessDialogChar(charCode);
            }
            return true;
        }