[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Find the descendent view in the view tree under the parent view returning the list of view nodesbetween the parent view and the descendent view. Returns null if the descendent view is not found.Returns an empty list if the descendent view is a child view of the parent view.

Namespace: net.esper.view
Assembly:   NEsper (in NEsper.dll)

Syntax

Visual Basic (Declaration)
Public Shared Function FindDescendent ( _
	parentView As Viewable, _
	descendentView As Viewable _
) As IList(Of View)
C#
public static IList<View> FindDescendent (
	Viewable parentView,
	Viewable descendentView
)
Visual C++
public:
static IList<View^>^ FindDescendent (
	Viewable^ parentView, 
	Viewable^ descendentView
)

Parameters

parentView
net.esper.view.Viewable
is the view to Start searching under
descendentView
net.esper.view.Viewable
is the view to find

Return Value

list of Viewable nodes between parent and descendent view.