LOTUSSCRIPT/COM/OLE CLASSES


Examples: GetFirst method
This script retrieves the first outline entry in the "products" outline and displays its label.

Dim session As New NotesSession
Dim db As NotesDatabase
Dim outline As NotesOutline
Dim oe As NotesOutlineEntry
Set db = session.CurrentDatabase
Set outline = db.GetOutline("products")
Set oe = outline.GetFirst()
Messagebox oe.Label

See Also