Signatures Property

Microsoft PowerPoint Visual Basic

object that represents a collection of digital signatures.

expression.Signatures

expression    Required. An expression that returns one of the objects in the Applies To list.

Example

The following line of code displays the number of digital signatures.

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