-
Notifications
You must be signed in to change notification settings - Fork 47
/
PerformanceAndProtectionSample.cs
116 lines (102 loc) · 5.98 KB
/
PerformanceAndProtectionSample.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*************************************************************************************************
Required Notice: Copyright (C) EPPlus Software AB.
This software is licensed under PolyForm Noncommercial License 1.0.0
and may only be used for noncommercial purposes
https://polyformproject.org/licenses/noncommercial/1.0.0/
A commercial license to use this software can be purchased at https://epplussoftware.com
*************************************************************************************************
Date Author Change
*************************************************************************************************
01/27/2020 EPPlus Software AB Initial release EPPlus 5
*************************************************************************************************/
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using OfficeOpenXml;
using OfficeOpenXml.Style;
using System.Drawing;
namespace EPPlusSamples.PerformanceAndProtection
{
class PerformanceAndProtectionSample
{
/// <summary>
/// This sample load a number of rows, style them and insert a row at the top.
/// A password is set to protect locked cells. Column 3 & 4 will be editable, the rest will be locked.
/// </summary>
/// <param name="rows"></param>
public static string Run(int rows)
{
var newFile = FileUtil.GetCleanFileInfo("09-PerformanceAndProtection.xlsx");
using (ExcelPackage package = new ExcelPackage())
{
Console.WriteLine("{0:HH.mm.ss}\tStarting...", DateTime.Now);
//Load the sheet with one string column, one date column and a few random numbers.
var ws = package.Workbook.Worksheets.Add("Performance Test");
//Format all cells
ExcelRange cols = ws.Cells["A:XFD"];
cols.Style.Fill.PatternType = ExcelFillStyle.Solid;
cols.Style.Fill.BackgroundColor.SetColor(Color.LightGray);
var rnd = new Random();
for (int row = 1; row <= rows; row++)
{
ws.SetValue(row, 1, row); //The SetValue method is a little bit faster than using the Value property
ws.SetValue(row, 2, string.Format("Row {0}", row));
ws.SetValue(row, 3, DateTime.Today.AddDays(row));
ws.SetValue(row, 4, rnd.NextDouble() * 10000);
if (row % 10000 == 0)
{
Console.WriteLine("{0:HH.mm.ss}\tWriting row {1}...", DateTime.Now, row);
}
}
//Set the formula using the R1C1 format
ws.Cells[1, 5, rows, 5].FormulaR1C1 = "RC[-4]+RC[-1]";
//Add a sum at the end
ws.Cells[rows + 1, 5].Formula = string.Format("Sum({0})", new ExcelAddress(1, 5, rows, 5).Address);
ws.Cells[rows + 1, 5].Style.Font.Bold = true;
ws.Cells[rows + 1, 5].Style.Numberformat.Format = "#,##0.00";
Console.WriteLine("{0:HH.mm.ss}\tWriting row {1}...", DateTime.Now, rows);
Console.WriteLine("{0:HH.mm.ss}\tFormatting...", DateTime.Now);
//Format the date and numeric columns
ws.Cells[1, 1, rows, 1].Style.Numberformat.Format = "#,##0";
ws.Cells[1, 3, rows, 3].Style.Numberformat.Format = "YYYY-MM-DD";
ws.Cells[1, 4, rows, 5].Style.Numberformat.Format = "#,##0.00";
Console.WriteLine("{0:HH.mm.ss}\tInsert a row at the top...", DateTime.Now);
//Insert a row at the top. Note that the formula-addresses are shifted down
ws.InsertRow(1, 1);
//Write the headers and style them
ws.Cells["A1"].Value = "Index";
ws.Cells["B1"].Value = "Text";
ws.Cells["C1"].Value = "Date";
ws.Cells["D1"].Value = "Number";
ws.Cells["E1"].Value = "Formula";
ws.View.FreezePanes(2, 1);
using (var rng = ws.Cells["A1:E1"])
{
rng.Style.Font.Bold = true;
rng.Style.Font.Color.SetColor(Color.White);
rng.Style.WrapText = true;
rng.Style.VerticalAlignment = ExcelVerticalAlignment.Center;
rng.Style.HorizontalAlignment = ExcelHorizontalAlignment.Center;
rng.Style.Fill.PatternType = ExcelFillStyle.Solid;
rng.Style.Fill.BackgroundColor.SetColor(Color.DarkBlue);
}
Console.WriteLine("{0:HH.mm.ss}\tAutofit columns and lock and format cells...", DateTime.Now);
ws.Cells[rows - 100, 1, rows, 5].AutoFitColumns(5); //Auto fit using the last 100 rows with minimum width 5
ws.Columns[5].Width = 15; //We need to set the width for column F manually since the end sum formula is the widest cell in the column (EPPlus don't calculate any forumlas, so no output text is avalible).
//Now we set the sheet protection and a password.
ws.Cells[2, 3, rows + 1, 4].Style.Locked = false;
ws.Cells[2, 3, rows + 1, 4].Style.Fill.PatternType = ExcelFillStyle.Solid;
ws.Cells[2, 3, rows + 1, 4].Style.Fill.BackgroundColor.SetColor(Color.White);
ws.Cells[1, 5, rows + 2, 5].Style.Hidden = true; //Hide the formula
ws.Protection.SetPassword("EPPlus");
ws.Select("C2");
Console.WriteLine("{0:HH.mm.ss}\tSaving...", DateTime.Now);
package.Compression = CompressionLevel.BestSpeed;
package.SaveAs(newFile);
}
Console.WriteLine("{0:HH.mm.ss}\tDone!!", DateTime.Now);
return newFile.FullName;
}
}
}