LOTUSSCRIPT/COM/OLE CLASSES


Examples: Name property
This script gets the name of an item. The Name property returns "Body."

Dim doc As NotesDocument
Dim item As NotesItem
Dim itemName As String
'...set value of doc...
Set item = doc.GetFirstItem( "Body" )
itemName = item.Name

See Also