Examples: IsResponse property (NotesDocument - LotusScript®)

This script checks if a document is a response.

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