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

SelectAtStart() public method

Make an insertion point at the start of the data covered by the hookup. GroupHookup delegates to its first child.
public SelectAtStart ( ) : InsertionPoint
return SIL.FieldWorks.SharpViews.Selections.InsertionPoint
		public override InsertionPoint SelectAtStart()
		{
			if (Children.Count == 0)
				return null;
			return Children.First().SelectAtStart();
		}
	}