LOTUSSCRIPT/COM/OLE CLASSES


Examples: Label property
This script displays the label of an outline entry.

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 "Label: " & oe.Label

See Also