Examples: Removing documents from a view entry collection
- This example removes all of the documents associated with the
entries in the view entry collection called Fox.
Sub Initialize Dim session As New NotesSession Dim db As NotesDatabase Dim view As NotesView Dim vc As NotesViewEntryCollection Set db = session.Currentdatabase Set view = db.GetView("By Category") Set vc = view.GetAllEntriesByKey("Fox") Call vc.RemoveAll(True) End Sub
- This example removes all of the documents associated with entries
in a folder called Jazz™.
Sub Initialize Dim session As New NotesSession Dim db As NotesDatabase Dim view As NotesView Dim vc As NotesViewEntryCollection Set db = session.CurrentDatabase Set view = db.GetView("By Category" Set vc = view.GetAllEntriesByKey("Trumpet players") Call vc.RemoveAllFromFolder("Jazz") End Sub