例: Values property (NotesItem - LotusScript®)

次のスクリプトは Subject アイテムの内容を取得します。Subject アイテムの内容が単一の文字列であっても、Values プロパティは配列を返します。

Dim doc As NotesDocument
'...set value of doc...
Dim item As NotesItem
Set item = doc.GetFirstItem( "Subject" )
Forall v In item.Values
  Messagebox( v ) 
End Forall