Articles in this section
Category / Section

Is it possible to apply no Paragraph Space option to a Word document in WinForms DocIO?

3 mins read

WinForms Word lets the user apply the “No Paragraph Space” option to the entire Word document. The same can also be achieved using DocIO. The “No Paragraph Space” option should have the following properties:

Property Name

Value

Before Spacing

0

After Spacing

0

Line Spacing

Single




In Microsoft Word you shall find this option from below location.
Go to Design Ribbon -> Click down arrow of “Paragraph Spacing” under “Document Formatting” -> click “No Paragraph Space”. When you choose this option, the above properties will be applied to the “Normal” style and it will be reflected on the paragraphs which are applied with “Normal” style. You shall achieve same using DocIO by applying above property to the “Normal” style.

Please refer the below screen shot to set “No Paragraph Space” option in Microsoft Word:

No Paragraph space
Limitations:

If the any paragraphs are applied with any direct formatting, then that will be considered rather that the definitions from “Normal” style, according to Microsoft Word document specification.



Kindly use the code below to set “No Paragraph Space” option to the Normal style using DocIO.
C#:

// Loading Word document
WordDocument document = new WordDocument("filename.docx");
//Gets the normal style which is base of other styles WParagraphStyle style = document.Styles.FindByName("Normal") as WParagraphStyle; // Sets before spacing value style.ParagraphFormat.BeforeSpacing = 0; // Sets after spacing value style.ParagraphFormat.AfterSpacing = 0; // The below two lines of code set line spacing to single. The line spacing rule "Multiple" with value 12 sets the line spacing to "Single" style.ParagraphFormat.LineSpacingRule = Syncfusion.DocIO.LineSpacingRule.Multiple; style.ParagraphFormat.LineSpacing = 12; // Saves the Word document document.Save("filename.docx");

VB:

Dim document As New WordDocument("filename.docx")
' Gets the normal style which is the base of other styles
Dim style As WParagraphStyle = TryCast(document.Styles.FindByName("Normal"), WParagraphStyle)
' Sets before spacing value
style.ParagraphFormat.BeforeSpacing = 0
' Sets after spacing value
style.ParagraphFormat.AfterSpacing = 0
' The below two lines of code set line spacing to single. The line spacing rule "Multiple" with value 12 sets the line spacing to "Single"
style.ParagraphFormat.LineSpacingRule = Syncfusion.DocIO.LineSpacingRule.Multiple
style.ParagraphFormat.LineSpacing = 12
' Saves the Word document
document.Save("filename.docx");

Conclusion

I hope you enjoyed learning about how it is possible to apply "No Paragraph Space" option to a Word document.

You can refer to our WinForms Word feature tour page to learn about its other groundbreaking features, documentation, and how to quickly get started with configuration specifications. You can also explore our WinForms Word example to understand how to create and manipulate data.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion®, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied