次のビューは、変更されたかどうかを調べます。
Dim session As New NotesDatabase
Dim db As NotesDatabase
Dim view As NotesView
Set db = session.CurrentDatabase
Set view = db.GetView(By Category)
If view.IsModified Then
Messagebox "This view is modified."
Else
Messagebox "This view is not modified."
End If