Signer (NotesDocument - JavaScript™)
Read-only. The name of the person who created the signature, if a document is signed.
Defined in
NotesDocumentSyntax
getSigner() : string
Usage
If a document is not signed, this property returns an empty string.If the signer is not trusted, this property returns an empty string.
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;"