Skip to content

Releases: doxa-labs/ExcelLabs

New Functions & .NET 8 Demo & Fix Excel Close Issue

11 Jun 17:11
9a493bd
Compare
Choose a tag to compare

What's Changed

// call save function
ExcelLabs.SaveFile(title, path, sheetName, cells);

// call safe save function
ExcelLabs.SaveFileWithCleanXmlText(title, path, sheetName, cells);

// clean not-allowed XML characters
string safeToWriteText = ExcelLabs.CleanTextForXml(title + " safe");
Console.WriteLine("Safe text: " + safeToWriteText);

// convert integer to Excel Column Letter like 1 to A
string excelColumnLetter1 = ExcelLabs.ColumnIndexToColumnLetter(1);
Console.WriteLine("1 to column letter: " + excelColumnLetter1); // A

// convert integer to Excel Column Letter like 1 to G
string excelColumnLetter7 = ExcelLabs.ColumnIndexToColumnLetter(7);
Console.WriteLine("7 to column letter: " + excelColumnLetter7); // G

Full Changelog: v2.2.1...v3.0.3

Add .NET 7 Demo with the new console template

28 Mar 19:02
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.2.0...v2.2.1

Add .NET6 Demo with the new console template

30 Nov 06:42
56498c3
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.1.0...v2.2.0

Demo for .NET 5 & .NET Framework

22 Feb 13:14
a419b5a
Compare
Choose a tag to compare
v2.1.0

Update README.md

Excel.Labs Tools Version 2.0.0 Release Notes

20 Sep 11:24
bd40541
Compare
Choose a tag to compare
  • Using OpenXml to create Excel files instead of Microsoft.Interop
  1. Create a Cell List
  2. Add Some Data
  3. Call SaveFile Function

Excel.Labs Tools Version 1.1.0 Release Notes

19 Sep 17:49
Compare
Choose a tag to compare
  • Using Microsoft.Interop

Usage Steps

  1. Init ExcelLabs
  2. Create a Cell List
  3. Add Some Data
  4. Call Save Function

Excel.Labs Tools Version 1.0.1 Release Notes

02 Sep 21:34
Compare
Choose a tag to compare

This is a pre-release version to test on NuGet.

Excel.Labs Tools Version 1.0.0 Release Notes

02 Sep 21:27
Compare
Choose a tag to compare

This is a pre-release version to test on NuGet.