StampAll (NotesDocumentCollection - LotusScript®)

Replaces the value of a specified name in all documents in a collection.

Defined in

NotesDocumentCollection

Syntax

C all notesDocumentCollection .StampAll( itemname , value )

Parameters

itemname

String. The name of the item.

value

A value appropriate for the item type.

Usage

If the item does not exist, it is created.

The item values are immediately written to the back-end documents. You do not have to use the Save method of NotesDocument after StampAll. However, any documents modified by your script must be saved before calling StampAll.

This method does not modify existing NotesDocument objects. Documents must be retrieved again to see the changes.

Example