Compartir a través de


WorkbookBase.Signatures Propiedad

Definición

Obtiene la colección de firmas digitales para el libro.

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

Valor de propiedad

Colección Microsoft.Office.Core.SignatureSet que contiene las firmas digitales del libro.

Ejemplos

En el ejemplo de código siguiente se obtiene el número de firmas adjuntas al libro actual y se muestra un mensaje adecuado para el usuario.

Este ejemplo es para una personalización de nivel de documento.

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

Comentarios

Para firmar digitalmente libros de Excel y comprobar otras firmas en ellos, necesita Microsoft CryptoAPI y un certificado de firma digital único. CryptoAPI se instala con Microsoft Internet Explorer 4.01 o posterior. Puede obtener un certificado de firma digital de una entidad de certificación.

Se aplica a