LOTUSSCRIPT /COM/OLE のクラス


例:IsResponse プロパティ
次のスクリプトは文書が返答文書かどうかを調べます。

Dim doc As NotesDocument
'...set value of doc...
If doc.IsResponse Then
Messagebox( "This document is a response.")
Else
Messagebox( "This document is not a response.")
End If

関連項目