IsSigned (NotesDocument - JavaScript™)
Read-only. Indicates whether a document contains a signature.
Defined in
NotesDocumentSyntax
isSigned() : boolean
Legal value | Description |
---|---|
true |
if the document contains one or more signatures |
false |
if the document does not contain signatures |
Usage
You can get theSigner
and Verifier
for
a signed document. To access the signature itself, you must find the
item of type SIGNATURE
in the document.Examples
This computed field displays the signer and verifier for the current document.var doc:NotesDocument = currentDocument.getDocument();
return doc.isSigned() ? "Document signed by " + doc.getSigner() +
", verified by " + doc.getVerifier(): "Document not signed;"