Protégez le mot de passe du projet VBA de Classeur Excel

Scénarios d’utilisation possibles

Vous pouvez protéger le projet VBA (Visual Basic for Applications) du classeur avec Aspose.Cells en utilisant VbaProject.protect() méthode.

Code d’exemple

Le code d’exemple suivant charge le fichier Excel d’exemple, accède à son projet VBA, et le protège avec un mot de passe. Enfin, il l’enregistre en tant que fichier Excel de sortie.

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
// The path to the documents directory.
String dataDir = Utils.getSharedDataDir(PasswordProtecttheVBAProjectofExcelWorkbook.class) + "WorkbookVBAProject/";
// Load your source Excel file.
Workbook wb = new Workbook(dataDir + "samplePasswordProtectVBAProject.xlsm");
// Access the VBA project of the workbook.
VbaProject vbaProject = wb.getVbaProject();
// Lock the VBA project for viewing with password.
vbaProject.protect(true, "11");
// Save the output Excel file
wb.save(dataDir + "outputPasswordProtectVBAProject.xlsm");