LOTUSSCRIPT/COM/OLE CLASSES
Examples: Removing documents from a view entry collection
1. 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
2. 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
Véase también
Removing documents from a view entry collection
Glosario
¿Desea opinar sobre la Ayuda?
Ayuda sobre la Ayuda
Abrir la Ayuda en pantalla completa
Glosario
¿Desea opinar sobre la Ayuda?
Ayuda sobre la Ayuda
Abrir la Ayuda en pantalla completa