Skip to content

Instantly share code, notes, and snippets.

@documentprocessing
Created November 23, 2024 05:44
Show Gist options
  • Save documentprocessing/923e16cf5512cb04578d9da91c0a6b0b to your computer and use it in GitHub Desktop.
Save documentprocessing/923e16cf5512cb04578d9da91c0a6b0b to your computer and use it in GitHub Desktop.
Insert Text in Excel XLSX using C#
Workbook workbook = new Workbook();
workbook.ApplyFontStyle("Arial", 14);
Worksheet worksheet = new Worksheet(workbook);
worksheet.insertValue("A10", 10, "some data", 0);
worksheet.saveDataToSheet(0);
workbook.Save("spreadsheet.xlsx");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment