LOTUSSCRIPT/COM/OLE CLASSES


Examples: Type property
This script displays the type of outline entry retrieved from the "products" outline.

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

See Also