System.Windows.Forms.Control.ProcessDialogChar C# (CSharp) Method

ProcessDialogChar() protected method

protected ProcessDialogChar ( char charCode ) : bool
charCode char
return bool
		protected virtual bool ProcessDialogChar(char charCode) {
			if (parent != null) {
				return parent.ProcessDialogChar (charCode);
			}

			return false;
		}
Control