The Syncfusion® native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
I am attempting to modify an existing Word document. In it, I have a table with a single row, and I need to add more rows that match. The initial row has an empty paragraph in each cell. Looking at the OOXML, here is the existing paragraph:
When I try to add a new row,and a new paragraph in the cells,thisis what I get:
Is there a way I can modify the inner run properties element (or, better yet,set a default
In case anyone is ever in the same boat, the BreakCharacterFormat on the WParagraph object is what I nee
Marked as answer
SBSuriya Balamurugan Syncfusion Team March 2, 2023 05:25 PM UTC
Hi Joe,
Yes, you can set the BreakCharacterFormat
to set the run properties of the paragraph.
Regarding - I have a table with a single row, and I need to add more rows that
match:
To achieve your requirement, we suggest you to clone the row and add the cloned
row into the table as per the below code snippet. So that you can add rows that
match with existing.
//Get the
table from a Word document.
WTable table
= wordDocument.Sections[0].Tables[0] as WTable;