Syncfusion.DocIO.NET 20.1.0.56

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Syncfusion.DocIO.NET --version 20.1.0.56
NuGet\Install-Package Syncfusion.DocIO.NET -Version 20.1.0.56
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Syncfusion.DocIO.NET" Version="20.1.0.56" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Syncfusion.DocIO.NET --version 20.1.0.56
#r "nuget: Syncfusion.DocIO.NET, 20.1.0.56"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Syncfusion.DocIO.NET as a Cake Addin
#addin nuget:?package=Syncfusion.DocIO.NET&version=20.1.0.56

// Install Syncfusion.DocIO.NET as a Cake Tool
#tool nuget:?package=Syncfusion.DocIO.NET&version=20.1.0.56

Syncfusion .NET Word library

The Syncfusion .NET 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.

.NET Word Library

Features overview | Docs | API Reference | Online Demo | GitHub Examples | Blogs | Support | Forums | Feedback

Key Features

  • Support to create Word document from scratch.
  • Support to open (read), modify and save existing Word documents.
  • Advanced Mail merge support with different data sources.
  • Ability to create or edit Word 97-2003 and later version documents (DOCX), and convert them to commonly used file formats such as RTF, WordML, TXT, HTML and vice versa.
  • Ability to export a Word document as a PDF file.
  • Ability to create and manipulate charts, Shapes, and Group shape in DOCX and WordML format documents.
  • Ability to read and write Built-In and Custom Document Properties.
  • Ability to find and replace text with its original formatting.
  • Ability to insert Bookmarks and navigate corresponding bookmarks to insert, replace, and delete content.
  • Support to insert and edit the form fields.
  • Support to protect the document to restrict access to the elements present within the document.
  • Ability to encrypt and decrypt Word documents.
  • Support to insert and extract OLE objects.
  • Support to run the DocIO applications in multi-thread and its thread safe.

System Requirements

Getting Started

You can fetch the Syncfusion .NET Word library NuGet by simply running the command Install-Package Syncfusion.DocIO.NET 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.

License

This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's EULA. You can purchase a license here or start a free 30-day trial here.

About Syncfusion

Founded in 2001 and headquartered in Research Triangle Park, N.C., Syncfusion has more than 27,000+ customers and more than 1 million users, including large financial institutions, Fortune 500 companies, and global IT consultancies.

Today, we provide 1700+ components and frameworks for web (Blazor, Flutter, ASP.NET Core, ASP.NET MVC, ASP.NET WebForms, JavaScript, Angular, React, Vue, and jQuery), mobile (.NET MAUI (Preview), Flutter, Xamarin, UWP, and JavaScript), and desktop development (WinForms, WPF, WinUI, .NET MAUI (Preview), 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

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Syncfusion.DocIO.NET:

Package Downloads
Syncfusion.DocIORenderer.NET The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Syncfusion Word library is feature-rich and high-performance .NET Word library that allows you to create, manipulate and convert Word documents (DOC, DOT, DOCM, DOTM, DOCX, DOTX, RTF, and WordML), TXT, and HTML files.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
25.1.37 118 3/26/2024
25.1.35 328 3/15/2024
24.2.9 302 3/4/2024
24.2.8 308 2/26/2024
24.2.7 424 2/19/2024
24.2.6 306 2/14/2024
24.2.5 308 2/12/2024
24.2.4 403 2/6/2024
24.2.3 325 1/31/2024
24.1.47 353 1/22/2024
24.1.46 365 1/16/2024
24.1.45 449 1/9/2024
24.1.44 545 1/3/2024
24.1.43 407 12/27/2023
24.1.41 565 12/18/2023
23.2.7 757 12/6/2023
23.2.6 591 11/28/2023
23.2.5 728 11/23/2023
23.2.4 1,798 11/20/2023
23.1.44 1,207 11/6/2023
23.1.43 535 10/30/2023
23.1.42 598 10/23/2023
23.1.41 541 10/16/2023
23.1.40 602 10/10/2023
23.1.39 544 10/4/2023
23.1.38 669 9/26/2023
23.1.36 714 9/15/2023
22.2.12 2,350 9/5/2023
22.2.11 709 8/28/2023
22.2.10 673 8/22/2023
22.2.9 723 8/14/2023
22.2.8 719 8/7/2023
22.2.7 809 8/2/2023
22.2.5 710 7/27/2023
22.1.39 735 7/18/2023
22.1.38 693 7/11/2023
22.1.37 734 7/3/2023
22.1.36 731 6/28/2023
22.1.34 1,867 6/21/2023
21.2.10 1,258 6/13/2023
21.2.9 1,040 6/6/2023
21.2.8 896 5/30/2023
21.2.6 806 5/22/2023
21.2.5 846 5/15/2023
21.2.4 859 5/9/2023
21.2.3 1,129 5/3/2023
21.1.41 845 4/19/2023
21.1.39 1,792 4/10/2023
21.1.38 1,118 4/3/2023
21.1.37 1,106 3/29/2023
21.1.35 1,220 3/23/2023
20.4.0.54 1,010 3/13/2023
20.4.0.53 1,002 3/7/2023
20.4.0.52 1,133 2/28/2023
20.4.0.51 1,018 2/21/2023
20.4.0.50 1,002 2/14/2023
20.4.0.49 935 2/7/2023
20.4.0.48 1,046 2/1/2023
20.4.0.44 1,214 1/18/2023
20.4.0.43 1,043 1/10/2023
20.4.0.42 1,053 1/4/2023
20.4.0.41 15,485 12/29/2022
20.4.0.40 992 12/28/2022
20.4.0.38 1,264 12/21/2022
20.3.0.61 1,155 12/13/2022
20.3.0.60 1,044 12/6/2022
20.3.0.59 1,023 11/29/2022
20.3.0.58 1,128 11/22/2022
20.3.0.57 1,178 11/15/2022
20.3.0.56 1,185 11/8/2022
20.3.0.52 1,089 10/27/2022
20.3.0.50 1,024 10/18/2022
20.3.0.49 972 10/11/2022
20.3.0.48 890 10/5/2022
20.3.0.47 1,109 9/29/2022
20.2.0.50 988 9/20/2022
20.2.0.49 1,093 9/13/2022
20.2.0.48 958 9/6/2022
20.2.0.46 929 8/30/2022
20.2.0.45 996 8/23/2022
20.2.0.44 1,021 8/16/2022
20.2.0.43 937 8/8/2022
20.2.0.40 1,123 7/26/2022
20.2.0.39 986 7/19/2022
20.2.0.38 1,000 7/12/2022
20.2.0.36 1,260 6/30/2022
20.1.0.61 1,083 6/21/2022
20.1.0.60 980 6/14/2022
20.1.0.59 1,004 6/7/2022
20.1.0.58 1,306 5/31/2022
20.1.0.57 1,002 5/24/2022
20.1.0.56 992 5/17/2022
20.1.0.55 1,152 5/12/2022
20.1.0.52 1,119 5/3/2022
20.1.0.51 996 4/26/2022
20.1.0.50 1,081 4/19/2022
20.1.0.48 1,042 4/12/2022
20.1.0.47 1,193 4/4/2022
19.4.0.56 1,048 3/15/2022
19.4.0.55 994 3/8/2022
19.4.0.54 1,025 3/1/2022
19.4.0.53 1,132 2/22/2022
19.4.0.52 1,033 2/15/2022
19.4.0.50 964 2/8/2022
19.4.0.48 1,045 1/31/2022
19.4.0.47 987 1/25/2022
19.4.0.43 1,027 1/18/2022
19.4.0.42 1,048 1/11/2022
19.4.0.41 860 1/4/2022
19.4.0.40 838 12/28/2021
19.4.0.38 1,230 12/17/2021