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

OnCreateControl() protected method

If we try to scroll to show the focus box before we are Created, our attempt to set the scroll position is ignored. This is an attempt to recover and make sure that even the first time the view is being created, we are scrolled to show the focus box if we have set one up.
protected OnCreateControl ( ) : void
return void
		protected override void OnCreateControl()
		{
			base.OnCreateControl();
			Debug.Assert(Created);
			if (IsFocusBoxInstalled)
				MoveFocusBoxIntoPlace(false);
		}
InterlinDocForAnalysis