Last active
April 22, 2024 07:34
C# Modify Word Paragraph Alignment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Prerequisite: Install <a href="https://www.nuget.org/packages/FileFormat.Words">FileFormat.Words</a>. | |
// Load the Word Document | |
var doc = new FileFormat.Words.Document($"filename.docx"); | |
// Initialize the body with the document | |
var body = new FileFormat.Words.Body(doc); | |
foreach (FileFormat.Words.IElements.Paragraph paragraph in body.Paragraphs) | |
{ | |
paragraph.AddRun(new FileFormat.Words.IElements.Run | |
{ Text = " (alignment modified to justify)", Italic=true }); | |
paragraph.Alignment = FileFormat.Words.IElements.ParagraphAlignment.Justify; //"Justify"; | |
doc.Update(paragraph); | |
} | |
// Save the modified Word Document | |
doc.Save($"AlignmentModified.docx"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment