Create and edit new WordProcessing document
Leave feedback
This guide shows how to create a new blank document in a specific format using the Editor class from GroupDocs.Editor for .NET.
It is possible to create a new blank document in all major document formats, including text (DOCX), workbooks (XLSX), presentations (PPTX), e-books (EPUB) and emails (EML). See the full list of supported document formats, take a note on a “Create” column, which indicates whether it is possible to create a new document of a particular format.
Prerequisites
.NET Framework 4.6.2
.NET 6.0
✅ Officially supported target frameworks based on the latest package version (25.7.0).
🔗 See more here: NuGet – GroupDocs.Editor
stringhtml=editable.GetEmbeddedHtml();stringupdatedHtml=html.Replace("<span class = \"text001\"> </span>","<span class = \"text001\">New text</span>");EditableDocumentupdatedDoc=EditableDocument.FromMarkup(updatedHtml);
The code creates a new DOCX document, modifies its HTML body, and saves the final version to memory.
You can optionally save it to a physical file or return it via API.