LOTUSSCRIPT/COM/OLE CLASSES
Examples: NotesView class
1. This script finds the By Category view in a mail database and then gets the first document in the view.
Dim db As New NotesDatabase( "Havana","mail\cbanner.nsf" )
Dim view As NotesView
Dim doc As NotesDocument
Set view = db.GetView( "By Category" )
Set doc = view.GetFirstDocument
2. This script calls GetView using a view's alias instead of its full name.
Dim db As New NotesDatabase( "Havana", "calendar.nsf" )
Dim view As NotesView
Set view = db.GetView( "CategoryView" )
3. You can access hidden views the same way as any other view; include the parentheses in the view name. This script gets a hidden view in a calendar database.
Dim db As New NotesDatabase( "Havana", "calendar.nsf" )
Dim view As NotesView
Set view = db.GetView( "(Days by Key)" )
4. This agent finds the default view of a database. It uses the Views property from the NotesDatabase class and the IsDefault property from the NotesView class.
Sub test_views
Dim db As New NotesDatabase( "Havana", "calendar.nsf" )
Dim view As NotesView
If Not Isempty (db.Views) Then
Forall v In db.Views
If v.IsDefaultView Then
Set view = v
Exit Forall
End If
End Forall
End If
End Sub
See Also
NotesView class
Glossary
Feedback on Help?
Help on Help
Open Full Help Window
Glossary
Feedback on Help?
Help on Help
Open Full Help Window