Examples: IsReaders property
This script adds Jeffrey Kinnamon to any Readers items in a document.
Dim doc As NotesDocument
'...set value of doc...
Forall i In doc.Items
If i.IsReaders Then
Call i.AppendToTextList( "Jeffrey Kinnamon" )
Call doc.Save( False, True )
End If
End Forall