This package provides the functionality to utilize the features of Syncfusion® UWP Word library and more.
$ dotnet add package Syncfusion.DocIO.UWPThe Syncfusion® UWP Word library (Essential® DocIO) is a feature-rich and high-performance .NET Word library that is used to create, read, and edit Word documents programmatically without Microsoft Office dependencies.

Features Overview | Docs | API Reference | Online Demo | GitHub Examples | Blogs | Support | Forums | Feedback
You can fetch the Syncfusion® .NET Word library NuGet by simply running the command Install-Package Syncfusion.DocIO.UWP from the Package Manager Console in Visual Studio.
Try the following code example to create a Word document.
using System.IO;
using Syncfusion.DocIO;
using Syncfusion.DocIO.DLS;
//Creates a new instance of WordDocument (Empty Word Document).
using (WordDocument document = new WordDocument())
{
//Adds a section and a paragraph to the document.
document.EnsureMinimal();
//Appends text to the last paragraph of the document.
document.LastParagraph.AppendText("Hello World");
//Creates an instance of memory stream.
using (MemoryStream stream = new MemoryStream())
{
//Saves the Word document to memory stream.
document.Save(stream, FormatType.Docx);
}
}
For more information to get started, refer to our Getting Started Documentation page.
This is a commercial product and requires a paid license for possession or use. Syncfusion® licensed software, including this component, is subject to the terms and conditions of Syncfusion® EULA. You can purchase a license here or start a free 30-day trial here.
Founded in 2001 and headquartered in Research Triangle Park, N.C., Syncfusion® has more than 29,000 customers and more than 1 million users, including large financial institutions, Fortune 500 companies, and global IT consultancies.
Today, we provide 1800+ components and frameworks for web (Blazor, Flutter, ASP.NET Core, ASP.NET MVC, ASP.NET Web Forms, JavaScript, Angular, React, Vue, and jQuery), mobile (.NET MAUI, Flutter, Xamarin, UWP, and JavaScript), and desktop development (WinForms, WPF, WinUI, .NET MAUI, Flutter, Xamarin, and UWP). We provide ready-to-deploy enterprise software for dashboards, reports, data integration, and big data processing. Many customers have saved millions in licensing fees by deploying our software.
sales@syncfusion.com | www.syncfusion.com | Toll Free: 1-888-9 DOTNET