PicoXLSX
PicoXLSX copied to clipboard
PicoXLSX is a small .NET / C# library to create XLSX files (Microsoft Excel 2007 or newer) in an easy and native way
When generating files, RichTextString is not supported, similar to Excel's Cell.Characters
Is it possible to change tab color? I was looking for something like this worksheet.TabColor but didn't found.
I`d like to write cell notes in a spreadsheet. Is it supported? If not, could you point me to how to add this support? I could do a PR.
Hi, I'm missing some features. - Write RichText to cells - Add conditional formattings to cells - Some more overloads for convenience like to make the switch to library more...
I've taken from example, code where its setting font like so: ``` cs Style s = new Style(); s.Append(Style.BasicStyles.Font("Arial Black", 11)); ``` And then call `.AddNextCell("text", s);` No matter what...