Is modern comment (thread comment) supported by OpenXML Excel #1257
Distancehe
announced in
Q&A
Replies: 2 comments 1 reply
-
@Distancehe There are ThreadedComments in the API currently. There is even a sample showing how to add/modify them. It's under the samples folder in this repo and called ThreadedCommentsExample. Here's an excerpt from the sample: WorksheetThreadedCommentsPart wstcp = wsp.AddNewPart<WorksheetThreadedCommentsPart>();
wstcp.ThreadedComments = new ThreadedComments(
new ThreadedComment(
new ThreadedCommentText("Ok, here's a threaded comment!"))
// ThreadedComment attributes
{ Ref = reference, PersonId = idUser, Id = tcId, DT = System.DateTime.Now }); Is this what you were looking for? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there an OpenXML Excel API to add modern comment ?
Beta Was this translation helpful? Give feedback.
All reactions