Returns a list of flavor elements that is the lineage to the flavor element
at the specified screen location.
| C# | Visual Basic | Visual C++ |
public abstract LinkedList<FlavorElement> GetChildLineageFromPoint( Point screenLocation, out FindRefineMode refineMode )
Public MustOverride Function GetChildLineageFromPoint ( _ screenLocation As Point, _ <OutAttribute> ByRef refineMode As FindRefineMode _ ) As LinkedList(Of FlavorElement)
public: virtual LinkedList<FlavorElement^>^ GetChildLineageFromPoint( Point screenLocation, [OutAttribute] FindRefineMode% refineMode ) abstract
- screenLocation (Point)
- The screen location to search at.
- refineMode ( FindRefineMode %)
- Can be set to indicate that further searching is required.
The lineage to the flavor element at the specified point as a list.
The first element in the returned list is the direct child of this flavor element,
the k-th element is the parent of the (k+1)-th element, and the last element is
the actual flavor element at the specified screen location.
