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

OnLostFocus() protected method

If you lost focus while processing a key or click, it may be because you are making a new selection before calling a method like TryHideFocusBoxAndUninstall(). Hide focus and uninstall first!
protected OnLostFocus ( EventArgs e ) : void
e System.EventArgs
return void
		protected override void OnLostFocus(EventArgs e)
		{
			if (m_vc != null)
				m_vc.SetActiveFreeform(0, 0, 0, 0);
			base.OnLostFocus(e);
		}
InterlinDocForAnalysis