Presentation.Signatures Property (PowerPoint)
Returns a SignatureSet object that represents a collection of digital signatures. Read-only.
Syntax
expression .Signatures
expression A variable that represents a Presentation object.
Return Value
SignatureSet
Example
The following line of code displays the number of digital signatures.
Sub DisplayNumberOfSignatures
MsgBox "Number of digital signatures: " & _
ActivePresentation.Signatures.Count
End Sub