Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Created March 26, 2025 10:36
Show Gist options
  • Save aspose-com-gists/ef01a9c491a227933973be0ccc859df4 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/ef01a9c491a227933973be0ccc859df4 to your computer and use it in GitHub Desktop.
How to Password Protect Excel Files Online & with Code
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");
// 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");
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