Items (NotesDocument - LotusScript®)

Read-only. All the items in a document. An item is any piece of data stored in a document.

Defined in

NotesDocument

Data type

Array of NotesItem objects

Syntax

To get: notesItemArray = notesDocument .Items

Usage

To set the value of an individual NotesItem object, you need to access the array elements individually. For example, to get the first element in the array returned from the NotesDocument object doc, you could do the following:

Dim item As NotesItem
Set item = doc.Items( 0 )

Example