SIL.FieldWorks.Common.Widgets.FwTreeView.IsInputChar C# (CSharp) Method

IsInputChar() protected method

We need to be able to handle the TAB key. Requires IsInputKey() == true.
protected IsInputChar ( char charCode ) : bool
charCode char
return bool
		protected override bool IsInputChar(char charCode)
		{
			if (charCode == '\t')
				return true;
			else
				return base.IsInputChar(charCode);
		}