LOTUSSCRIPT/COM/OLE CLASSES


Examples: HeaderLines property
This script will display the number of lines in the header of the By Category view in the current database.

Dim session As New NotesSession
Dim db As NotesDatabase
Dim view As NotesView
Set db = session.CurrentDatabase
Set view = db.GetView("By Category")
Messagebox "Number of header lines: " & view.HeaderLines

See Also