IronWord 2025.7.13

dotnet add package IronWord --version 2025.7.13
                    
NuGet\Install-Package IronWord -Version 2025.7.13
                    
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.7.13" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="IronWord" Version="2025.7.13" />
                    
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.7.13
                    
#r "nuget: IronWord, 2025.7.13"
                    
#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.7.13
                    
#: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.7.13
                    
Install as a Cake Addin
#tool nuget:?package=IronWord&version=2025.7.13
                    
Install as a Cake Tool

Nuget Installs Passed windows linux docker aws microsoftazure livechat

IronWord - The C# Word Library

IronWord NuGet Trial Banner Image

IronWord is a library developed and maintained by Iron Software that helps C# Software Engineers to load, manipulate, and save Word document in .NET applications & websites.

IronWord excels at:

  • Loading, manipulating, and saving Word and DOCX documents.
  • PageSetup: Configuring paper size, page orientation, margins, and background color.
  • TextRun: Handling text content, styles, splitting, appending text, and adding images.
  • TextStyle: Managing font family, size, color, bold, italic, strikethrough, underline, superscript, and subscript.
  • Paragraph: Adding text runs, images, shapes, setting styles, alignments, bullets, and numbering lists.
  • Table: Manipulating table structure, including adding rows, getting and setting cell values, removing rows, merging cells, and more.
  • Image: Loading images from files or streams, setting wrap text, position offset, width, height, and other properties.
  • Shape: Setting wrap text, position offset, width, height, shape type, and rotation.

And much more! Visit our website to see all our code examples and a full list of our features

IronWord Has Cross Platform Support Compatibility With:

  • .NET 9, .NET 8, .NET 7, .NET 6 and .NET 5, Core 2x & 3x, Standard 2, and Framework 4.6.2+
  • Windows, macOS, Linux, Docker, Azure, and AWS

IronWord Cross Platform Compatibility Support Image

Our API reference and full licensing information can be found easily on our website.

Using IronWord

You can install the IronWord NuGet package by simply entering this command in your package manager console:

PM> Install-Package IronWord

Once installed, add using IronWord; to the top of your C# code. Here is a code example to get started with loading, editing, and saving a document:

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");

Features Table

IronWord Features

Licensing & Support available

For our full list of code examples, tutorials, licensing information, and documentation visit: https://ironsoftware.com/csharp/word/

For support please email us at: support@ironsoftware.com

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.7.13 149 7/17/2025
2025.7.12 148 7/16/2025
2025.6.4 520 6/17/2025
2025.5.3 621 5/13/2025
2025.4.3 505 4/8/2025
2025.3.10 627 3/10/2025
2025.2.15 1,171 2/5/2025
2025.1.2 512 1/3/2025
2024.12.2 1,942 12/3/2024
2024.11.2 3,150 11/6/2024
2024.10.2 493 10/2/2024
2024.9.1 2,115 9/9/2024
2024.8.3 1,475 7/30/2024
2024.7.1 583 7/2/2024
2024.6.1 1,749 6/4/2024
2024.5.8 519 4/30/2024
2024.4.1 374 4/4/2024
2024.3.5 593 3/11/2024
2024.1.2 576 12/29/2023

Updates
   - Updates IronSoftware.System.Drawing to 2025.7.12.
   
   Bug Fixes
   - Fixes an issue where loading some docx file would throw an error of `Error in implicit conversion. Cannot convert null object`.
   - Fixes an issue with loading docx files that contain custom style group.
   - Fixes an issue with OpenXML dependency version conflicts when users install IronWord alongside their own OpenXML references.
   - Fixes table rendering issues with column structure and cell content display.
   - Fixes measurement unit conversion calculations.
   - Fixes null reference handling in paragraph style properties.
   - Fixes minor bugs in table component operations.