Partager via


WorkbookBase.VBASigned, propriété

Obtient une valeur qui indique si le projet Visual Basic pour Applications pour le classeur a été signé numériquement.

Espace de noms :  Microsoft.Office.Tools.Excel
Assembly :  Microsoft.Office.Tools.Excel.v4.0.Utilities (dans Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)

Syntaxe

'Déclaration
Public ReadOnly Property VBASigned As Boolean
public bool VBASigned { get; }

Valeur de propriété

Type : System.Boolean
true si le projet Visual Basic pour Applications pour le classeur a été signé numériquement ; sinon, false.

Exemples

L'exemple de code suivant utilise la propriété VBASigned pour afficher un message si le projet Visual Basic pour Applications pour le classeur n'a pas été signé numériquement.

Cet exemple illustre une personnalisation au niveau du document.

Private Sub WorkbookVBASigned()
    If Not Me.VBASigned Then
        MsgBox("Warning: This workbook has not been " & _
            "digitally signed.")
    End If
End Sub
private void WorkbookVBASigned()
{
    if (!this.VBASigned)
    {
        MessageBox.Show("Warning: This workbook has not been " +
            "digitally signed.");
    }
}

Sécurité .NET Framework

Voir aussi

Référence

WorkbookBase Classe

Microsoft.Office.Tools.Excel, espace de noms