Partager via


WorkbookBase.Signatures Propriété

Définition

Reçoit la collection des signatures numériques pour le classeur.

public:
 property Microsoft::Office::Core::SignatureSet ^ Signatures { Microsoft::Office::Core::SignatureSet ^ get(); };
public Microsoft.Office.Core.SignatureSet Signatures { get; }
member this.Signatures : Microsoft.Office.Core.SignatureSet
Public ReadOnly Property Signatures As SignatureSet

Valeur de propriété

Collection Microsoft.Office.Core.SignatureSet qui contient les signatures numériques pour le classeur.

Exemples

L’exemple de code suivant obtient le nombre de signatures attachées au classeur actuel et affiche un message approprié à l’utilisateur.

Cet exemple concerne une personnalisation au niveau du document.

private void GetSignatures()
{
    if (this.Signatures.Count == 0)
    {
        MessageBox.Show(
            "There are no signatures that are attached to the " 
            + "current workbook.");
    }
    else
    {
        MessageBox.Show(
            "Number of signatures attached to the current workbook: "
            + this.Signatures.Count.ToString());
    }
}
Private Sub GetSignatures()
    If Me.Signatures.Count = 0 Then
        MessageBox.Show( _
            "There are no signatures that are attached to the " _
            + "current workbook.")
    Else
        MessageBox.Show( _
            "Number of signatures attached to the current workbook: " _
            + Me.Signatures.Count.ToString())
    End If
End Sub

Remarques

Pour signer numériquement des classeurs Excel et vérifier d’autres signatures, vous avez besoin de Microsoft CryptoAPI et d’un certificat de signature numérique unique. CryptoAPI est installé avec Microsoft Internet Explorer 4.01 ou version ultérieure. Vous pouvez obtenir un certificat de signature numérique auprès d’une autorité de certification.

S’applique à