Hi,
We have Microsoft Word Table Formatting Issues with OOXML Specification using .NET
When we save some documents with OoxmlSaveOptions, the table layout present in them is different then when saved without the options.
Please see the code example and the sample document to replicate the issues.
Code to Reproduce Microsoft Word Table Formatting Issues
var doc = new Document(@"out.docx");
var options = new OoxmlSaveOptions { Compliance = OoxmlCompliance.Iso29500_2008_Strict };
doc.Save(@"outAfterOoxml.docx", options);
Thanks,out.zip (11.9 KB)
Lukasz