例: GetNextSibling method (NotesViewNavigator - LotusScript®)

次のスクリプトは、ビューナビゲータ内の同じレベルにある次のエントリを返し、フォルダに入れます。

Dim session As New NotesSession
Dim db As NotesDatabase
Dim view As NotesView
Dim entryA As NotesViewEntry
Dim entryB As NotesViewEntry
Dim entryC As NotesViewEntry
Dim nav As NotesViewNavigator
Dim doc As NotesDocument
Set db = session.CurrentDatabase
Set view = db.GetView("By Category")
view.AutoUpdate = False
Set nav = view.CreateViewNavFromCategory("Sale items")
Set entryA = nav.GetFirst
Set entryB = nav.GetChild(entryA)
Set entryC = nav.GetNexSibling(entryB)
Set doc = entryC.Document
Call doc.PutInFolder("Midnight Madness")