-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProtectionActions.cs
99 lines (91 loc) · 4.64 KB
/
ProtectionActions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
using DevExpress.Spreadsheet;
using System;
using System.Drawing;
namespace SpreadsheetDocServerAPIPart2
{
public static class ProtectionActions
{
public static Action<Workbook> ProtectWorkbookAction = ProtectWorkbook;
public static Action<Workbook> UnprotectWorkbookAction = UnprotectWorkbook;
public static Action<Workbook> ProtectWorksheetAction = ProtectWorksheet;
public static Action<Workbook> UnprotectWorksheetAction = UnprotectWorksheet;
public static Action<Workbook> ProtectRangeAction = ProtectRange;
static void ProtectWorkbook(Workbook workbook)
{
#region #ProtectWorkbook
Worksheet worksheet = workbook.Worksheets["ProtectionSample"];
workbook.Worksheets.ActiveWorksheet = worksheet;
// Protect workbook structure with a password.
if (!workbook.IsProtected)
workbook.Protect("password", true, false);
// Add a note.
worksheet["B2"].Value = "Workbook structure is protected with a password. \n You cannot add, move or delete worksheets until protection is removed.";
worksheet.Visible = true;
#endregion #ProtectWorkbook
}
static void UnprotectWorkbook(Workbook workbook)
{
#region #UnprotectWorkbook
Worksheet worksheet = workbook.Worksheets["ProtectionSample"];
workbook.Worksheets.ActiveWorksheet = worksheet;
// Unprotect the workbook.
if (workbook.IsProtected)
workbook.Unprotect("password");
// Add a note.
worksheet["B2"].Value = "Workbook is unprotected. Workheets can be added, moved or deleted.";
worksheet.Visible = true;
#endregion #UnprotectWorkbook
}
static void ProtectWorksheet(Workbook workbook)
{
#region #ProtectWorksheet
Worksheet worksheet = workbook.Worksheets["ProtectionSample"];
workbook.Worksheets.ActiveWorksheet = worksheet;
// Protect the worksheet with a password.
if (!worksheet.IsProtected)
worksheet.Protect("password", WorksheetProtectionPermissions.Default);
// Add a note.
worksheet["B2"].Value = "Worksheet is protected with a password. \n You cannot edit or format cells until protection is removed." +
"\nTo remove protection, on the Review tab, in the Changes group," +
"\nclick \"Unprotect Sheet\" and enter \"password\".";
worksheet.Visible = true;
#endregion #ProtectWorksheet
}
static void UnprotectWorksheet(Workbook workbook)
{
#region #UnprotectWorksheet
Worksheet worksheet = workbook.Worksheets["ProtectionSample"];
workbook.Worksheets.ActiveWorksheet = worksheet;
// Unprotect the worksheet.
if (worksheet.IsProtected)
worksheet.Unprotect("password");
// Add a note.
worksheet["B2"].Value = "Worksheet is unprotected. You can edit and format cells.";
worksheet.Visible = true;
#endregion
}
static void ProtectRange(Workbook workbook)
{
#region #ProtectRange
Worksheet worksheet = workbook.Worksheets["ProtectionSample"];
workbook.Worksheets.ActiveWorksheet = worksheet;
worksheet["B2:J5"].Borders.SetOutsideBorders(Color.Red, BorderLineStyle.Thin);
// Specify user permission to edit a range in a protected worksheet.
ProtectedRange protectedRange = worksheet.ProtectedRanges.Add("My Range", worksheet["B2:J5"]);
EditRangePermission permission = new EditRangePermission();
permission.UserName = Environment.UserName;
permission.DomainName = Environment.UserDomainName;
permission.Deny = false;
protectedRange.SecurityDescriptor = protectedRange.CreateSecurityDescriptor(new EditRangePermission[] { permission });
protectedRange.SetPassword("123");
// Protect the worksheet with a password.
if (!worksheet.IsProtected)
worksheet.Protect("password", WorksheetProtectionPermissions.Default);
// Add a note.
worksheet["B2"].Value = "This cell range is protected with a password. \n You cannot edit or format it until protection is removed." +
"\nTo remove protection, double-click the range and enter \"123\".";
worksheet.Visible = true;
#endregion #ProtectRange
}
}
}