Proteger y desproteger libros de trabajo en VSTO y Aspose.Cells
Contents
[
Hide
]
Para abrir un archivo de Excel Microsoft existente, proteja el libro de trabajo con estructura y atributos Windows y guarde el archivo.
continuación se muestran fragmentos de código paralelo para VSTO (C#) y Aspose.Cells for .NET (C#) que muestran cómo proteger un libro de trabajo.
VSTO
Proteger el libro de trabajo
//Instantiate the Application object.
Excel.Application excelApp = Application;
//Excel.Application excelApp = Application;
//Specify the template excel file path.
string myPath = "MyBook.xls";
//Open the excel file.
excelApp.Workbooks.Open(myPath, Missing.Value, Missing.Value,
Missing.Value, Missing.Value,
Missing.Value, Missing.Value,
Missing.Value, Missing.Value,
Missing.Value, Missing.Value,
Missing.Value, Missing.Value,
Missing.Value, Missing.Value);
//Protect the workbook specifying a password with Structure and Windows attributes.
excelApp.ActiveWorkbook.Protect("007", true, true);
//Save the file.
excelApp.ActiveWorkbook.Save();
//Quit the Application.
excelApp.Quit();
Libro de trabajo de desprotección
//Unprotect the workbook specifying its password.
excelApp.ActiveWorkbook.Unprotect("007");
Aspose.Cells
Proteger el libro de trabajo
//Specify the template excel file path.
string myPath = "Book1.xls";
//Instantiate a new Workbook.
//Open the excel file.
Workbook workbook = new Workbook(myPath);
//Protect the workbook specifying a password with Structure and Windows attributes.
workbook.Protect(ProtectionType.All, "007");
//Save As the excel file.
workbook.Save("MyBook.xls");
Libro de trabajo de desprotección
//Unprotect the workbook specifying its password.
workbook.Unprotect("007");
Descargar código de muestra
- Github
- forjafuente
- [Bitbucket](https://bitbucket.org/asposemarketplace/aspose-for-vsto/downloads/Protecting%20and%20Unprotecting%20Workbooks%20(Aspose.Cells).Código Postal)