Learn how to Password Protect Excel Files Online & with Code
Created
March 26, 2025 10:36
-
-
Save aspose-com-gists/ef01a9c491a227933973be0ccc859df4 to your computer and use it in GitHub Desktop.
How to Password Protect Excel Files Online & with Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Aspose.Cells; | |
// Load the Excel workbook | |
Workbook workbook = new Workbook("Workbook.xlsx"); | |
// Set the password | |
workbook.Settings.Password = "12345"; | |
// Optionally set the password for modification. | |
workbook.Settings.WriteProtection.Password = "12345"; | |
// Save the modified workbook | |
workbook.Save("Locked.xlsx"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Load the Excel workbook | |
Workbook workbook = new Workbook("Workbook.xlsx"); | |
// Password protect the file. | |
workbook.getSettings().setPassword("1234"); | |
// Optionally Set the password for modification. | |
workbook.getSettings().getWriteProtection().setPassword("12345"); | |
// Save the modified workbook | |
workbook.save("Locked.xlsx"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import aspose.cells as cells | |
# Open an Excel file. | |
workbook = cells.Workbook("Workbook.xlsx") | |
# Password protect the file. | |
workbook.settings.password = "1234" | |
# Set the password for modification. | |
workbook.settings.write_protection.password = "12345" | |
# Save the excel file. | |
workbook.save("Locked.xlsx") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment