Esporta il certificato VBA su File o Stream

Esporta il certificato VBA su File o Stream in C#

Consulta il seguente codice di esempio che salva i dati grezzi del certificato VBA in un file. Puoi scaricare il file di esempio di Excel utilizzato in questo codice dal link fornito.

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
// Load your source excel file into workbook object
Workbook workbook = new Workbook(dataDir + "sampleVBAProjectSigned.xlsm");
// Retrieve bytes data of Digital Certificate of VBA Project
byte[] certBytes = workbook.VbaProject.CertRawData;
// Save Certificate Data into FileStream
File.WriteAllBytes(dataDir + "Cert_out_", certBytes);