IronWord 2025.11.29

dotnet add package IronWord --version 2025.11.29
                    
NuGet\Install-Package IronWord -Version 2025.11.29
                    
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="IronWord" Version="2025.11.29" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="IronWord" Version="2025.11.29" />
                    
Directory.Packages.props
<PackageReference Include="IronWord" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add IronWord --version 2025.11.29
                    
#r "nuget: IronWord, 2025.11.29"
                    
#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.
#:package IronWord@2025.11.29
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=IronWord&version=2025.11.29
                    
Install as a Cake Addin
#tool nuget:?package=IronWord&version=2025.11.29
                    
Install as a Cake Tool

Nuget Installs Passed windows linux docker aws microsoftazure livechat

IronWord - The C# Word Library

IronWord is a C# library for creating, reading, and editing Word documents in .NET

IronWord NuGet Trial Banner Image

IronWord is an intuitive C# library that simplifies Word document processing for .NET developers. Quickly generate, load, and save DOCX files with a straightforward API designed to streamline your document workflow and get you results in minutes.

Get Started in 3 Steps

1. Install the NuGet Package

PM> Install-Package IronWord

2. Create Your First DOCX

using IronWord;
using IronWord.Models;
using IronSoftware.Drawing;

// Load an existing DOCX
var docx1 = new WordDocument("existing.docx");

// Or, make a new DOCX
var docx_new = new WordDocument();

// Add a paragraph with text
Paragraph paragraphWithText = new();
var text = new TextContent()
{
    Text = "Hello IronWord!"
};
paragraphWithText.AddText(text);

docx1.AddParagraph(paragraphWithText);

// Add a paragraph with an image
ImageContent image = new ImageContent("example.jpg");
image.Width = 200; // In unit pixel
image.Height = 200; // In unit pixel
Paragraph paragraphWithImage = new Paragraph();

// Add image
paragraphWithImage.AddImage(image);

docx1.AddParagraph(new Paragraph(paragraphWithImage));

// Save over the existing DOCX
docx1.Save("existing.docx");

// Or save as a new DOCX
docx1.SaveAs("output.docx");

3. Explore More

Dive deeper with our extensive documentation and examples:

  • Tutorials: Step-by-step guides to help you build your first WORD application.

  • Code Examples: Practical examples of executable code for common tasks.

  • How-To Guides: Practical, goal-oriented instructions to solve specific problems.

  • Demo: Demonstrating guides that showcase how IronWORD works the way it does.

  • API Reference: Detailed technical descriptions of the API and its components.

Key Features

  • Create Words: Generate and populate new Word (docx) files from scratch.

  • Edit Words: Programmatically find and replace text, insert images and shapes, and extract content for data processing.

  • Style Words: Apply rich formatting and styling to any document element including texts and images.

IronWord Features

Compatibility

IronWORD is built for modern .NET and supports a wide range of project types and operating systems.

  • Platforms: .NET 10, .NET 9, .NET 8, .NET 7, .NET 6, .NET 5, Core 2x & 3x, Standard 2

  • Framework: .NET Framework 4.6.2 (and above)

  • App Models: Console, Web, and Desktop Apps

  • Operating Systems: Windows, macOS, Linux (Debian, CentOS, Ubuntu)

  • Cloud & Containerization Platforms: Azure, AWS, Docker

  • IDEs: Microsoft Visual Studio or Jetbrains ReSharper & Rider

IronWord Cross Platform Compatibility Support Image

License

IronWORD is a commercially licensed product.

  • Trial License: Get a free developer key to evaluate the full library with no commitment. Ideal for development and testing purposes. Start your trial HERE.

  • Purchase a License: Unlock the library for use in commercial projects and get access to our full technical support. Purchase your license HERE.

Getting Help & Support

Have a question or running into an issue?

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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2025.11.29 446 11/10/2025
2025.10.8 379 10/8/2025
2025.9.6 933 9/2/2025
2025.8.17 1,639 8/13/2025
2025.7.13 485 7/17/2025
2025.7.12 201 7/16/2025
2025.6.4 1,330 6/17/2025
2025.5.3 789 5/13/2025
2025.4.3 691 4/8/2025
2025.3.10 773 3/10/2025
2025.2.15 1,608 2/5/2025
2025.1.2 564 1/3/2025
2024.12.2 2,401 12/3/2024
2024.11.2 3,690 11/6/2024
2024.10.2 534 10/2/2024
2024.9.1 2,167 9/9/2024
2024.8.3 2,047 7/30/2024
2024.7.1 639 7/2/2024
2024.6.1 1,971 6/4/2024
2024.5.8 572 4/30/2024
2024.4.1 416 4/4/2024
2024.3.5 661 3/11/2024
2024.1.2 656 12/29/2023

Updates:
   - Updates internal dependencies.