Click or drag to resize
PicoXLSX

WorkbookSetWorkbookProtection Method

Sets or removes the workbook protection. If protectWindows and protectStructure are both false, the workbook will not be protected

Namespace: PicoXLSX
Assembly: PicoXLSX (in PicoXLSX.dll) Version: 3.4.5+3a069966d2787c42b695e5043a5e083b247634e3
Syntax
C#
public void SetWorkbookProtection(
	bool state,
	bool protectWindows,
	bool protectStructure,
	string password
)

Parameters

state  Boolean
If true, the workbook will be protected, otherwise not.
protectWindows  Boolean
If true, the windows will be locked if the workbook is protected.
protectStructure  Boolean
If true, the structure will be locked if the workbook is protected.
password  String
Optional password. If null or empty, no password will be set in case of protection.
See Also