-
Notifications
You must be signed in to change notification settings - Fork 277
LoadFromTextAsync
Mats Alm edited this page Nov 7, 2023
·
2 revisions
Async version of the LoadFromText method.
using (var pck = new ExcelPackage())
{
var sheet = pck.Workbook.Worksheets.Add("sheet");
var file = new FileInfo("c:\\temp\\my_file.txt");
await sheet.Cells["C1"].LoadFromTextAsync(file);
}
- See the LoadFromText method for a detailed description.
- Import data
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
- 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
- Autofit columns
- Grouping and Ungrouping Rows and Columns
- Formatting and styling
- Conditional formatting
- Using Themes
- Working with custom named table- or slicer- styles