You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to have an api e.g. by builder pattern to enable building a comment.
new CellComment.Builder()
.withAuthor("Some author name")
.withComment("Some text")
.withDate(date, "MM-dd-yyyy HH:mm) // or .withDate(date, "MM-dd-yyyy) // or
.withStyle(new CommentStyle.Builder()
.withFontSize(19)
.withFontName("Tahoma")
.withColor("Green")
// etc
);
as allowed by the ooxml standard.
All options should be optionals.
So in my case I need only:
new CellComment.Builder().withComment("Some text");
I use LibreOffice on a daily basis, but in Google Docs, I also see a similar comment. I would like to have only the text itself, and if the standard does not allow it, I would like to be able to set the author of the comment.
Hi,
could you extend the fast-excel API with the ability to add, also, information about the author of the comment?
After generating the excel file, I unfortunately have a rather ugly comment.
The current implementation as you can see is quite flawed.
https://learn.microsoft.com/en-us/dotnet/api/documentformat.openxml.spreadsheet.comments?view=openxml-3.0.1
The text was updated successfully, but these errors were encountered: