Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fileformat-words-gists/54529e570031b98be281539a81713ef1 to your computer and use it in GitHub Desktop.
Save fileformat-words-gists/54529e570031b98be281539a81713ef1 to your computer and use it in GitHub Desktop.
C# Modify Numbered Paragraphs in Word Documents
// Prerequisite: Install <a href="https://www.nuget.org/packages/FileFormat.Words">FileFormat.Words</a>.
// Load the Word Document
var doc = new FileFormat.Words.Document($"WordParagraphsNumbered.docx");
// Initialize the body with the document
var body = new FileFormat.Words.Body(doc);
//foreach (FileFormat.Words.IElements.Paragraph paragraph in body.Paragraphs)
foreach (var paragraph in body.Paragraphs)
{
if (paragraph.Style == "ListParagraph")
{
paragraph.Style = "Normal";
paragraph.AddRun(new FileFormat.Words.IElements.Run
{ Text = " (numbering removed)", Italic = true });
doc.Update(paragraph);
}
}
// Save the modified Word Document
doc.Save($"ModifiedWordParagraphsNumbered.docx");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment