Share via


Presentation.Signatures Property

PowerPoint Developer Reference

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.

Visual Basic for Applications
  Sub DisplayNumberOfSignatures
    MsgBox "Number of digital signatures: " & _
        ActivePresentation.Signatures.Count
End Sub

See Also