Examples: Formula property (NotesOutlineEntry - LotusScript®)

This script displays the formula of an action outline.

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