SIL.FieldWorks.SharpViews.Hookups.GroupHookup.SelectAtEnd C# (CSharp) Method

SelectAtEnd() public method

Make an insertion point at the end of the data covered by the hookup. GroupHookup delegates to its last child. Enhance JohnT: possibly try the second-last child, if the last one cannot, and so on?
public SelectAtEnd ( ) : InsertionPoint
return SIL.FieldWorks.SharpViews.Selections.InsertionPoint
		public override InsertionPoint SelectAtEnd()
		{
			if (Children.Count == 0)
				return null;
			return Children.Last().SelectAtEnd();
		}
		/// <summary>