Dhaval Gajera

Results 2 comments of Dhaval Gajera

Possible fix can be this. **in ProcessTableRow function** remove `//properties.AddChild(new TableCellSpacing() { Type = TableWidthUnitValues.Dxa, Width = "0" }); ` ref: https://docs.microsoft.com/en-us/dotnet/api/documentformat.openxml.wordprocessing.tablecellspacing?view=openxml-2.8.1

In NumberingListStyleCollection possible fix can be following: ``` public void EndList(bool popInstances = true) { levelDepth--; if (levelDepth > 0 && popInstances) numInstances.Pop(); // decrement for nested list firstItem =...