GetItemValueDateTimeArray (NotesDocument - LotusScript®)

Returns the value of a date-time item in a document.

Note: This method is new with Release 6.

Defined in

NotesDocument

Syntax

notesDateTimeArray = notesDocument .GetItemValueDateTimeArray( itemName$ )

Parameters

itemName$

String. The name of a date-time item.

Return value

notesDateTimeArray

Array of type NotesDateTime and NotesDateRange. Each element in the array corresponds to a value in the item. If the item contains a single value, the array has one element.

Usage

If multiple items have the same name, this method returns the value of the first item.

To get the value as an array of variants of type Date, see GetItemValue.

Example