GetChild (NotesViewNavigator - LotusScript®)

Returns the first child (response) of an entry in a view navigator.

Defined in

NotesViewNavigator

Syntax

Set notesViewEntry = notesViewNavigator .GetChild( entry )

Parameters

entry

NotesViewEntry. An entry in the view. Defaults to the current entry. If you specify Nothing, this method generates an error.

Return value

notesViewEntry

NotesViewEntry. The first child of the current or specified entry. Returns Nothing if there are no children.

Usage

To find additional response documents, use GetNextSibling. The combination of GetChild and GetNextSibling lets you access document responses, sorted in the same order that they appear in a view. To get all of the immediate responses to a document, unsorted, use the Responses property in NotesDocument.

Example