Examples: Document property

This script gets the document associated with the Cars view entry in the By Category view and puts it in the Machines folder.

Dim session As New NotesSession
Dim db As NotesDatabase
Dim view As NotesView
Dim entry As NotesViewEntry
Dim doc As NotesDocument
Set db = session.CurrentDatabase
Set view = db.GetView("By Category")
view.AutoUpdate = False
Set entry = view.GetEntryByKey("Cars")
Set doc = entry.Document
Call doc.PutInFolder("Machines")