Examples: LastModified property (NotesView - LotusScript®)

This script gets the date that the By Author view in the current database was last modified, and puts it into modifyDate. For example, LastModified returns 10/17/95 9:15:35 PM.

Dim session As New NotesSession
Dim db As NotesDatabase
Dim view As NotesView
Dim modifyDate As Variant
Set db = session.CurrentDatabase
Set view = db.GetView( "By Author" )
modifyDate = view.LastModified