-
Notifications
You must be signed in to change notification settings - Fork 297
LoadFromCollection
This method provides an easy way to load data from IEnumerables of .NET classes into a spreadsheet.
We can start with the following simple class...
public class MyClass
{
public string Id { get; set; }
public string Name { get; set; }
public int Number { get; set; }
}...and a a few instances of it in a List.
var items = new List<MyClass>()
{
new MyClass(){ Id = "123", Name = "Item 1", Number = 3},
new MyClass(){ Id = "456", Name = "Item 2", Number = 6}
};Now let's create a workbook with a worksheet and add this data into it using the LoadFromCollection method:
using (var pck = new ExcelPackage())
{
var sheet = pck.Workbook.Worksheets.Add("sheet");
sheet.Cells["C1"].LoadFromCollection(items);
}This will load data into the worksheet, starting at cell C1. C1 will get the value "123", D1 will get the value "Item 1", E1 will get the value 3.
LoadFromCollection has several method signatures and argument number 2 specifies if we should have a row with headers above the data. In this case the headers will have the same values as the names of the class properties, i.e. "Id", "Name" and "Number".
sheet.Cells["C1"].LoadFromCollection(items, true);...alternatively:
sheet.Cells["C1"].LoadFromCollection(items, c => c.PrintHeaders = true);The headers ("Id", "Name" and "Number") will be written in the range C1:E1 and the data will be written from D1.
The third argument - TableStyle - gives you the possibility to style the range as a table.
sheet.Cells["C1"].LoadFromCollection(items, true, TableStyles.Dark1);...alternatively:
sheet.Cells["C1"].LoadFromCollection(items, c => {
c.PrintHeaders = true;
c.TableStyle = TableStyles.Dark1;
});The TableStyles enum gives you over 60 different table styles to pick from!
EPPlus Software AB - https://epplussoftware.com
- What is new in EPPlus 5+
- Breaking Changes in EPPlus 5
- Breaking Changes in EPPlus 6
- Breaking Changes in EPPlus 7
- Breaking Changes in EPPlus 8
- Addressing a worksheet
- Dimension/Used range
- Copying ranges/sheets
- Insert/Delete
- Filling ranges
- Sorting ranges
- Taking and skipping columns/rows
- Data validation
- Comments
- Freeze and Split Panes
- Header and Footer
- Hyperlinks
- Autofit columns
- Grouping and Ungrouping Rows and Columns
- Formatting and styling
- The ExcelRange.Text property
- Conditional formatting
- Using Themes
- Working with custom named table- or slicer- styles