« Excel et CSharp avec EPPlus » : différence entre les versions
De Banane Atomic
Aller à la navigationAller à la recherche
Aucun résumé des modifications |
Aucun résumé des modifications |
||
(Une version intermédiaire par le même utilisateur non affichée) | |||
Ligne 1 : | Ligne 1 : | ||
[[Category: | [[Category:.NET Application]] | ||
= Liens = | = Liens = | ||
* [https://github.com/EPPlusSoftware/EPPlus EPPlus] | * [https://github.com/EPPlusSoftware/EPPlus EPPlus 5 on GitHub] | ||
* [https://github.com/JanKallman/EPPlus EPPlus 4 on GitHub] | |||
= Bases = | = Bases = |
Dernière version du 12 mars 2023 à 09:32
Liens
Bases
ExcelPackage.LicenseContext = LicenseContext.NonCommercial; using (var package = new ExcelPackage(new FileInfo(@"C:\folder\file.xlsx"))) { var workbook = package.Workbook; var worksheet = workbook.Worksheets[0]; // row, col, row, col worksheet.Cells[1, 1, 3, 3].Sort(1); // sort by column 1 (0-based) the selected range package.Save(); } |