We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
using (WordprocessingDocument doc = WordprocessingDocument.Open("testd.docx", true)) { var body = doc.MainDocumentPart.Document.Body; List<OpenXmlElement> changes = body.Descendants<ParagraphPropertiesChange>() //.Where(c => c.Author.Value == authorName) .Cast<OpenXmlElement>().ToList(); // number is 0 List<OpenXmlElement> deletions = body.Descendants<Deleted>() //.Where(c => c.Author.Value == authorName) .Cast<OpenXmlElement>().ToList(); // number is 0 var insertions = body.Descendants<Inserted>() //.Where(c => c.Author.Value == authorName) .Cast<OpenXmlElement>().ToList(); // number is 0 }
testd.docx
The text was updated successfully, but these errors were encountered:
I don't think I understand your question. What do you mean by "find Deleted Inserted"?
Sorry, something went wrong.
No branches or pull requests
testd.docx
The text was updated successfully, but these errors were encountered: