DocXPlus icon indicating copy to clipboard operation
DocXPlus copied to clipboard

DocX Plus is an abstraction layer over the Word Processor parts of Open XML SDK, providing a more intuitive object model for creating word processing documents.

Results 1 DocXPlus issues
Sort by recently updated
recently updated
newest added

using (var doc = DocX.Create(@"z:\blah\blah\blah\doc.docx", DocumentType.Document)) { var table = doc.AddTable(5); for (int k = 0; k < 10; k++) { for (int i = 0; i < 5; i++)...