SIL.FieldWorks.IText.InterlinDocForAnalysis.OnGotFocus C# (CSharp) Method

OnGotFocus() protected method

If we have an active focus box put the focus back there when this is focused.
protected OnGotFocus ( EventArgs e ) : void
e System.EventArgs
return void
		protected override void OnGotFocus(EventArgs e)
		{
			if (ExistingFocusBox != null)
				ExistingFocusBox.Focus();
			base.OnGotFocus(e);
		}
InterlinDocForAnalysis