BigExcelCreator 0.2022.262.1415
See the version list below for details.
dotnet add package BigExcelCreator --version 0.2022.262.1415
NuGet\Install-Package BigExcelCreator -Version 0.2022.262.1415
<PackageReference Include="BigExcelCreator" Version="0.2022.262.1415" />
paket add BigExcelCreator --version 0.2022.262.1415
#r "nuget: BigExcelCreator, 0.2022.262.1415"
// Install BigExcelCreator as a Cake Addin #addin nuget:?package=BigExcelCreator&version=0.2022.262.1415 // Install BigExcelCreator as a Cake Tool #tool nuget:?package=BigExcelCreator&version=0.2022.262.1415
Big Excel Creator
Create Excel files using OpenXML SAX with styling. This is specially useful when trying to output thousands of rows
Table of Contents
Usage
- Instantiate class
BigExcelWritter
using either a file path or a stream (MemoryStream
is recommended). - Open a new Sheet using
CreateAndOpenSheet
- For every row, use
BeginRow
andEndRow
- Between
BeginRow
andEndRow
, useWriteTextCell
to write a cell.Alternatively, you can use
WriteTextRow
to write an entire row at once, using the same format. - Use
CloseSheet
to finish. - If needed, repeat steps 2 → 5 to write to another sheet
Example
using BigExcelCreator;
....
MemoryStream stream = new MemoryStream();
using (BigExcelWritter excel = new(stream, DocumentFormat.OpenXml.SpreadsheetDocumentType.Workbook))
{
excel.CreateAndOpenSheet("Sheet Name");
excel.BeginRow();
excel.WriteTextCell("Cell content");
excel.EndRow();
excel.CloseSheet();
}
Data Validation
Use AddListValidator
to restrict possible values to be written to a cell by an user.
excel.CreateAndOpenSheet("Sheet Name");
...
// Only allow values included in sheet named "vals" between cells A1 and A6
// when writing to cells between B2 and B10 of the current sheet.
string range = "B2:B10";
string formula = "vals!$A$1:$A$6";
excel.AddValidator(range, formula);
excel.CloseSheet();
Styling and formatting
Column width
When calling CreateAndOpenSheet
, pass IList<Column>
as second parameter.
Each element represents a single column.
Only the CustomWidth
and Width
properties are needed and considered.
At this point,
CustomWidth
must be set totrue
Width
represents the column width in characters (Same unit as when resizing in Excel).
Example
List<Column> cols = new List<Column> {
new Column{CustomWidth = true, Width=10}, // A
new Column{CustomWidth = true, Width=15}, // B
new Column{CustomWidth = true, Width=18}, // c
};
excel.CreateAndOpenSheet("Sheet Name", cols);
Hide Sheet
CreateAndOpenSheet
accepts as third parameter a SheetStateValues
variable.
SheetStateValues.Visible
(default): Sheet is visibleSheetStateValues.Hidden
: Sheet is hiddenSheetStateValues.VeryHidden
: Sheet is hidden and cannot be unhidden from Excel's UI.
Styling
First, the elements that define a style (font, fill, border and, optionally, numbering format) must be created.
font1 = new Font(new Bold(),
new FontSize { Val = 11 },
new Color { Rgb = new HexBinaryValue { Value = "000000" } },
new FontName { Val = "Calibri" });
fill1 = new Fill(
new PatternFill { PatternType = PatternValues.Gray125 });
fill2 = new Fill(
new PatternFill (
new ForegroundColor { Rgb = new HexBinaryValue { Value = "FFFF00" } }
)
{ PatternType = PatternValues.Solid });
border1 = new Border(
new LeftBorder(
new Color { Rgb = new HexBinaryValue { Value = "FFD3D3D3" } }
)
{ Style = BorderStyleValues.Thin },
new RightBorder(
new Color { Rgb = new HexBinaryValue { Value = "FFD3D3D3" } }
)
{ Style = BorderStyleValues.Thin },
new TopBorder(
new Color { Rgb = new HexBinaryValue { Value = "FFD3D3D3" } }
)
{ Style = BorderStyleValues.Thin },
new BottomBorder(
new Color { Rgb = new HexBinaryValue { Value = "FFD3D3D3" } }
)
{ Style = BorderStyleValues.Thin },
new DiagonalBorder());
numberingFormat1 = new NumberingFormat { NumberFormatId = 164, FormatCode = "0,.00;(0,.00)" };
After that, a new style list can be created and new styles inserted. Remember to name you styles.
StyleList list = new StyleList();
string name1 = "name1";
string name2 = "name2";
list.NewStyle(font1, fill1, border1, numberingFormat1, name1);
list.NewStyle(font1, fill2, border1, numberingFormat1, name2);
When instantiating BigExcelWritter
, use the result of calling GetStylesheet
as the stylesheet
parameter.
Then, when writing a cell, you can use the name given earlier to format it.
MemoryStream stream = new MemoryStream();
using (BigExcelWritter excel = new(stream,
DocumentFormat.OpenXml.SpreadsheetDocumentType.Workbook
stylesheet: list.GetStylesheet()))
{
int index_style_name1 = list.GetIndexByName(name1);
int index_style_name2 = list.GetIndexByName(name2);
excel.CreateAndOpenSheet("Sheet Name");
excel.BeginRow();
excel.WriteTextCell("This has a gray patterned background", index_style_name1);
excel.WriteTextCell("This has a yellow background", index_style_name2);
excel.EndRow();
excel.CloseSheet();
}
Comments
In order to add a note (formerly known as comment) to a cell, while a sheet is open, call the Comment
method.
excel.CreateAndOpenSheet("Sheet Name");
excel.BeginRow();
excel.WriteTextCell("This has a gray patterned background", index_style_name1);
excel.WriteTextCell("This has a yellow background", index_style_name2);
excel.Comment("test A1 another sheet", "A1");
excel.EndRow();
excel.Comment("test E2 another sheet", "B1", "Author");
excel.CloseSheet();
Autofilter
In order to add an Autofilter, call AddAutofilter
while on a sheet.
excel.BeginRow();
// ...
excel.AddAutofilter(range); // Range's height must be 1. Example: A1:J1
// ...
excel.EndRow();
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard1.3 is compatible. netstandard1.4 was computed. netstandard1.5 was computed. netstandard1.6 was computed. netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net35 is compatible. net40 is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 is compatible. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 is compatible. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
Universal Windows Platform | uap was computed. uap10.0 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 3.5
- DocumentFormat.OpenXml (>= 2.18.0)
-
.NETFramework 4.0
- DocumentFormat.OpenXml (>= 2.18.0)
-
.NETFramework 4.6
- DocumentFormat.OpenXml (>= 2.18.0)
-
.NETFramework 4.8
- DocumentFormat.OpenXml (>= 2.18.0)
-
.NETStandard 1.3
- DocumentFormat.OpenXml (>= 2.18.0)
- NETStandard.Library (>= 1.6.1)
-
.NETStandard 2.0
- DocumentFormat.OpenXml (>= 2.18.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
3.2.2024.32600 | 27 | 11/21/2024 | |
3.1.2024.30215 | 87 | 10/28/2024 | |
3.0.2024.12304 | 117 | 5/2/2024 | |
2.3.2024.32600 | 26 | 11/21/2024 | |
2.3.2024.30215 | 82 | 10/28/2024 | |
2.3.2023.24606 | 185 | 9/3/2023 | |
2.2.2022.32620 | 1,525 | 11/22/2022 | |
2.2.2022.32316 | 337 | 11/19/2022 | |
2.1.2022.31704 | 343 | 11/13/2022 | |
2.1.2022.30921-alpha | 159 | 11/5/2022 | |
2.0.2022.28922 | 539 | 10/16/2022 | |
1.1.2022.28717 | 420 | 10/14/2022 | |
1.1.2022.28621 | 518 | 10/13/2022 | |
1.0.2022.28300 | 409 | 10/10/2022 | |
1.0.2022.26519 | 451 | 9/22/2022 | |
0.2022.262.1415 | 428 | 9/19/2022 | |
0.2022.261.2322 | 412 | 9/18/2022 | |
0.2022.256.1815 | 499 | 9/13/2022 | |
0.2022.255.1549 | 393 | 9/12/2022 | |
0.2022.253.2131 | 407 | 9/10/2022 |