Created
November 23, 2024 05:44
-
-
Save documentprocessing/923e16cf5512cb04578d9da91c0a6b0b to your computer and use it in GitHub Desktop.
Insert Text in Excel XLSX using C#
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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