RanorexRanorex Documentation
GetChildLineageFromPoint Method (screenLocation, refineMode)
NamespacesRanorex.CoreFlavorElementGetChildLineageFromPoint(Point, FindRefineMode%)
Returns a list of flavor elements that is the lineage to the flavor element at the specified screen location.
Declaration Syntax
C#Visual BasicVisual 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
Parameters
screenLocation (Point)
The screen location to search at.
refineMode (FindRefineMode%)
Can be set to indicate that further searching is required.
Return Value
LinkedList<(Of <(<'FlavorElement>)>)>
The lineage to the flavor element at the specified point as a list.
Remarks
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. Consequently, an empty list is to be returned if this element is the best fitting element at the requested point.

Returns null if the specified screenLocation is not within this or one of its descendant elements.

Assembly: Ranorex.Core (Module: Ranorex.Core.dll) Version: 4.0.4.23593 (4.0.4.23593)