LOTUSSCRIPT/COM/OLE CLASSES


Responses property
Example

Read-only. The immediate responses to a document.

Defined in

NotesDocument

Data type

NotesDocumentCollection

Syntax

To get: Set notesDocumentCollection = notesDocument.Responses

Usage

Each document in the collection is an immediate response to the first document. Responses-to-responses are not included. If the current document has no responses, the NotesDocumentCollection contains zero documents.

The value of this property is set when the document is saved, and stored in the backend document. If the notesDocument.Responses property value changes after being defined, a new notesDocument must be defined to access the revised property.

Note This property is not available for a new document, and will return Nothing. The document must be closed and reopened before the property is available.

Responses-to-Responses

This property returns only immediate responses to a document, but you can write a recursive sub or function to access all the descendants of a particular document. A recursive sub calls itself, the same way that a non-recursive sub calls any other sub or function.

Language cross-reference

Responses property in Java Document class

@Responses function in formula language

Example
See Also