OfficeIMO.Word 1.0.2

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package OfficeIMO.Word --version 1.0.2
                    
NuGet\Install-Package OfficeIMO.Word -Version 1.0.2
                    
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="OfficeIMO.Word" Version="1.0.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="OfficeIMO.Word" Version="1.0.2" />
                    
Directory.Packages.props
<PackageReference Include="OfficeIMO.Word" />
                    
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 OfficeIMO.Word --version 1.0.2
                    
#r "nuget: OfficeIMO.Word, 1.0.2"
                    
#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.
#addin nuget:?package=OfficeIMO.Word&version=1.0.2
                    
Install as a Cake Addin
#tool nuget:?package=OfficeIMO.Word&version=1.0.2
                    
Install as a Cake Tool

OfficeIMO - Microsoft Word .NET Library

OfficeIMO is available as a NuGet package from the gallery and is the preferred installation method.

nuget downloads nuget version license CI codecov

If you would like to contact me you can do so via Twitter or LinkedIn.

twitter blog linked

What it's all about

This is a small project (under development) that allows to create Microsoft Word documents (.docx) using .NET. Underneath it uses OpenXML SDK but heavily simplifies it. It was created because working with OpenXML is way too hard for me and time-consuming. I created it for use within the PowerShell module called PSWriteOffice, but thought it may be useful for others to use in the .NET community. This repository also includes an experimental OfficeIMO.Excel component for creating simple spreadsheets.

If you want to see what it can do take a look at this blog post.

I used to use the DocX library (which I co-authored/maintained before it was taken over by Xceed) to create Microsoft Word documents, but it only supports .NET Framework, and their newest community license makes the project unusable.

As I am not really a developer, and I hardly know what I'm doing if you know how to help out - please do.

  • If you see bad practice, please open an issue/submit PR.
  • If you know how to do something in OpenXML that could help this project - please open an issue/submit PR
  • If you see something that could work better - please open an issue/submit PR
  • If you see something that I made a fool of myself - please open an issue/submit PR
  • If you see something that works not the way I think it works - please open an issue/submit PR

If you notice any issues or have suggestions for improvement, please open an issue or submit a pull request. The main thing is - it has to work with .NET Framework 4.7.2, .NET Standard 2.0 and so on.

This project is under development and as such there's a lot of things that can and will change, especially if some people help out.

Platform Status Code Coverage .NET
Windows Windows Codecov OfficeIMO.Word: netstandard2.0, net472, net8.0, net9.0; OfficeIMO.Excel: netstandard2.0, net472, net48, net8.0, net9.0
Linux Linux Codecov OfficeIMO.Word: net8.0; OfficeIMO.Excel: net8.0, net9.0
MacOs macOS Codecov OfficeIMO.Word: net8.0; OfficeIMO.Excel: net8.0, net9.0

Support This Project

If you find this project helpful, please consider supporting its development. Your sponsorship will help the maintainers dedicate more time to maintenance and new feature development for everyone.

It takes a lot of time and effort to create and maintain this project. By becoming a sponsor, you can help ensure that it stays free and accessible to everyone who needs it.

To become a sponsor, you can choose from the following options:

Your sponsorship is completely optional and not required for using this project. We want this project to remain open-source and available for anyone to use for free, regardless of whether they choose to sponsor it or not.

If you work for a company that uses our .NET libraries or PowerShell Modules, please consider asking your manager or marketing team if your company would be interested in supporting this project. Your company's support can help us continue to maintain and improve this project for the benefit of everyone.

Thank you for considering supporting this project!

Please share with the community

Please consider sharing a post about OfficeIMO and the value it provides. It really does help!

Share on reddit Share on hacker news Share on twitter Share on facebook Share on linkedin

Features

Here's a list of features currently supported (and probably a lot I forgot) and those that are planned. It's not a closed list, more of TODO, and I'm sure there's more:

  • ☑️ Word basics

    • ☑️ Create
    • ☑️ Load
    • ☑️ Save (auto open on save as an option)
    • ☑️ SaveAs (auto open on save as an option)
  • ☑️ Word properties

    • ☑️ Reading basic and custom properties
    • ☑️ Setting basic and custom properties
  • ☑️ Sections

    • ☑️ Add Paragraphs
    • ☑️ Add Headers and Footers (Odd/Even/First)
    • ☑️ Remove Headers and Footers (Odd/Even/First)
    • ☑️ Remove Paragraphs
    • ☑️ Remove Sections
  • ☑️ Headers and Footers in the document (not including sections)

    • ☑️ Add Default, Odd, Even, First
    • ☑️ Remove Default, Odd, Even, First
  • ☑️ Paragraphs/Text and make it bold, underlined, colored and so on

    • ☑️ Custom paragraph styles via WordParagraphStyle
  • ☑️ Paragraphs and change alignment

  • ☑️ Paragraph indentation (before, after, first line, hanging)

  • ☑️ Line spacing with support for twips and points

  • ☑️ Tables

    • ☑️ Add and modify table styles (one of 105 built-in styles)
    • ☑️ Add rows and columns
    • ☑️ Add cells
    • ☑️ Add cell properties
    • ☑️ Add and modify table cell borders
    • ☑️ Remove rows
    • ☑️ Remove cells
    • ☑️ Others
      • ☑️ Merge cells (vertically, horizontally)
      • ☑️ Split cells (vertically)
      • ☑️ Split cells (horizontally)
      • ☑️ Detect merged cells (vertically, horizontally)
      • ☑️ Nested tables
      • ☑️ Repeat header row on each page
      • ☑️ Control row page breaks
      • ☑️ Set row height and table width
  • ☑️ Images/Pictures (supports BMP, GIF, JPEG, PNG, TIFF, EMF with various wrapping options)

    • ☑️ Add images from file to Word
    • ☑️ Add images from Base64 strings
    • ☑️ Save image from Word to File
    • ☑️ Crop images and set transparency
    • ☑️ Image positioning and location retrieval
    • ◼️ Other location types
  • ☑️ Hyperlinks

    • ☑️ Add HyperLink
    • ☑️ Read HyperLink
    • ☑️ Remove HyperLink
    • ☑️ Change HyperLink
  • ☑️ PageBreaks

    • ☑️ Add PageBreak
    • ☑️ Read PageBreak
    • ☑️ Remove PageBreak
    • ☑️ Change PageBreak
  • ☑️ Page numbering

    • ☑️ Insert page numbers in headers or footers
    • ☑️ Choose style with WordPageNumberStyle
  • ☑️ Bookmarks

    • ☑️ Add Bookmark
    • ☑️ Read Bookmark
    • ☑️ Remove Bookmark
    • ☑️ Change Bookmark
  • ☑️ Find and replace text

    • ☑️ Comments
      • ☑️ Add comments
      • ☑️ Read comments
      • ☑️ Remove comments (single or all)
      • ☑️ Track comments
  • ☑️ Fields

    • ☑️ Add Field
    • ☑️ Read Field
    • ☑️ Remove Field
    • ☑️ Change Field
  • ☑️ Footnotes

    • ☑️ Add new footnotes
    • ☑️ Read footnotes
    • ☑️ Remove footnotes
  • ☑️ Endnotes

    • ☑️Add new endnotes
    • ☑️Read endnotes
    • ☑️Remove endnotes
  • ☑️ Document variables

    • ☑️ Set and read variables stored in the document
    • ☑️ Remove variables by name or index
  • ☑️ Macros

    • ☑️ Add or extract VBA projects
    • ☑️ Remove macro modules
  • ☑️ Mail merge

    • ☑️ Replace MERGEFIELD values
    • ☑️ Optionally keep field codes
  • ☑️ Content Controls

    • ☑️ Add controls
    • ☑️ Read controls
    • ☑️ Update control text
    • ☑️ Remove controls
    • ☑️ Checkbox form controls
  • ☑️ Shapes

    • ☑️ Add rectangles
    • ☑️ Add ellipses
    • ☑️ Add lines
    • ☑️ Add polygons
    • ☑️ Set fill and stroke color
    • ☑️ Remove shapes
  • ☑️ Charts

    • ☑️ Add charts
      • ☑️ Pie and Pie 3D
      • ☑️ Bar and Bar 3D
      • ☑️ Line and Line 3D
      • ☑️ Combo (Bar + Line)
      • ☑️ Area and Area 3D
      • ☑️ Scatter
      • ☑️ Radar
    • ☑️ Add categories and legends
    • ☑️ Configure axes
    • ☑️ Add multiple series
    • ⚠️ When mixing bar and line series call AddChartAxisX before adding any data so both chart types share the same category axis.
  • ☑️ Equations

    • ☑️ Insert Office Math equations from OMML
    • ☑️ Remove equations when needed
  • ☑️ Lists

    • ☑️ Add lists
    • ☑️ Remove lists
    • ☑️ Clone lists preserving numbering settings
    • ☑️ Add picture bullet lists
    • ☑️ Create custom bullet and numbered lists
    • ☑️ Detect list style from existing paragraphs
  • ☑️ Table of contents

    • ☑️ Add TOC
    • ☑️ Update TOC fields on open
  • ☑️ Borders

    • ☑️ Built-in styles or custom settings
    • ☑️ Change size, color, style and spacing
  • ☑️ Background

    • ☑️ Set background color
  • ☑️ Watermarks

    • ☑️ Add text or image watermark
    • ☑️ Choose text or image style via WordWatermarkStyle
    • ☑️ Set rotation, width and height
    • ☑️ Remove watermark
  • ☑️ Cover pages

    • ☑️ Add built-in cover pages
  • ☑️ Embedded content

    • ☑️ Add embedded documents (RTF, HTML, TXT)
    • ☑️ Add HTML fragments
    • ☑️ Insert HTML fragment after a paragraph
    • ☑️ Replace text with an HTML fragment
    • ☑️ Remove embedded documents
    • ☑️ Embed objects with custom icons and sizes
  • ☑️ Digital signatures and document security

  • ☑️ Document protection options (final document, read-only recommended, read-only enforced)

  • ☑️ Accepting/rejecting revisions

  • ☑️ Async save/load APIs

  • ☑️ Merging multiple documents

  • ☑️ Text boxes with positioning options

  • ☑️ Page orientation, page size, and margin presets (margins)

  • ☑️ Tab characters and custom tab stops

  • ☑️ Document validation utilities

  • ☑️ CleanupDocument method merges identical runs

  • ☑️ Paragraph XML serialization

  • ☑️ Measurement unit conversion helpers

  • ☑️ Experimental Excel component

    • ☑️ Create and load workbooks
    • ☑️ Add worksheets
    • ☑️ Async save and load APIs

Features (oneliners):

This list of features is for times when you want to quickly fix something rather than playing with full features. These features are available as part of WordHelpers class.

  • ☑️ Remove Headers and Footers from a file
  • ☑️ Convert DOTX template to DOCX

Examples

Basic Document with few document properties and paragraph

This short example shows how to create a Word document with just one paragraph of text and a few document properties.

string filePath = System.IO.Path.Combine(
    "Support",
    "GitHub",
    "PSWriteOffice",
    "Examples",
    "Documents",
    "BasicDocument.docx");

using (WordDocument document = WordDocument.Create(filePath)) {
    document.BuiltinDocumentProperties.Title = "This is my title";
    document.BuiltinDocumentProperties.Creator = "Przemysław Kłys";
    document.BuiltinDocumentProperties.Keywords = "word, docx, test";

    var paragraph = document.AddParagraph("Basic paragraph");
    paragraph.ParagraphAlignment = JustificationValues.Center;
    paragraph.Color = SixLabors.ImageSharp.Color.Red;

document.Save(true);
}

Creating documents directly in a stream

This overload allows generating a document entirely in memory or on any provided stream.

using var stream = new MemoryStream();
using (var document = WordDocument.Create(stream)) {
    document.AddParagraph("Stream based document");
    document.Save(stream);
}
stream.Position = 0;
using (var loaded = WordDocument.Load(stream)) {
    Console.WriteLine(loaded.Paragraphs[0].Text);
}

Saving as a new document

SaveAs clones the current document to a new path and returns a new WordDocument instance without changing the original FilePath.

using (WordDocument document = WordDocument.Create()) {
    document.AddParagraph("Some text");
    using var copy = document.SaveAs(filePath);
    // document.FilePath is still null
    // copy.FilePath equals filePath
}

Basic Document with Headers/Footers (first, odd, even)

This short example shows how to add headers and footers to a Word document.

using (WordDocument document = WordDocument.Create(filePath)) {
    document.Sections[0].PageOrientation = PageOrientationValues.Landscape;
    document.AddParagraph("Test Section0");
    document.AddHeadersAndFooters();
    document.DifferentFirstPage = true;
    document.DifferentOddAndEvenPages = true;

    document.Sections[0].Header.First.AddParagraph().SetText("Test Section 0 - First Header");
    document.Sections[0].Header.Default.AddParagraph().SetText("Test Section 0 - Header");
    document.Sections[0].Header.Even.AddParagraph().SetText("Test Section 0 - Even");

    document.AddPageBreak();
    document.AddPageBreak();
    document.AddPageBreak();
    document.AddPageBreak();

    var section1 = document.AddSection();
    section1.PageOrientation = PageOrientationValues.Portrait;
    section1.AddParagraph("Test Section1");
    section1.AddHeadersAndFooters();
    section1.Header.Default.AddParagraph().SetText("Test Section 1 - Header");
    section1.DifferentFirstPage = true;
    section1.Header.First.AddParagraph().SetText("Test Section 1 - First Header");

    document.AddPageBreak();
    document.AddPageBreak();
    document.AddPageBreak();
    document.AddPageBreak();

    var section2 = document.AddSection();
    section2.AddParagraph("Test Section2");
    section2.PageOrientation = PageOrientationValues.Landscape;
    section2.AddHeadersAndFooters();
    section2.Header.Default.AddParagraph().SetText("Test Section 2 - Header");

    document.AddParagraph("Test Section2 - Paragraph 1");

    var section3 = document.AddSection();
    section3.AddParagraph("Test Section3");
    section3.AddHeadersAndFooters();
    section3.Header.Default.AddParagraph().SetText("Test Section 3 - Header");

    Console.WriteLine("Section 0 - Text 0: " + document.Sections[0].Paragraphs[0].Text);
    Console.WriteLine("Section 1 - Text 0: " + document.Sections[1].Paragraphs[0].Text);
    Console.WriteLine("Section 2 - Text 0: " + document.Sections[2].Paragraphs[0].Text);
    Console.WriteLine("Section 2 - Text 1: " + document.Sections[2].Paragraphs[1].Text);
    Console.WriteLine("Section 3 - Text 0: " + document.Sections[3].Paragraphs[0].Text);

    Console.WriteLine("Section 0 - Text 0: " + document.Sections[0].Header.Default.Paragraphs[0].Text);
    Console.WriteLine("Section 1 - Text 0: " + document.Sections[1].Header.Default.Paragraphs[0].Text);
    Console.WriteLine("Section 2 - Text 0: " + document.Sections[2].Header.Default.Paragraphs[0].Text);
    Console.WriteLine("Section 3 - Text 0: " + document.Sections[3].Header.Default.Paragraphs[0].Text);
    document.Save(true);
}

Adding a Content Control

This example shows how to add and update a simple content control and then retrieve it by tag.

using (WordDocument document = WordDocument.Create(filePath)) {
    var sdt = document.AddStructuredDocumentTag("Hello", "MyAlias", "MyTag");
    sdt.Text = "Changed";
    document.Save(true);
}

using (WordDocument document = WordDocument.Load(filePath)) {
    var tag = document.GetStructuredDocumentTagByTag("MyTag");
Console.WriteLine(tag.Text);
}

Multiple Content Controls

using (WordDocument document = WordDocument.Create(filePath)) {
    document.AddStructuredDocumentTag("First", "Alias1", "Tag1");
    document.AddStructuredDocumentTag("Second", "Alias2", "Tag2");
    document.AddStructuredDocumentTag("Third", "Alias3", "Tag3");
    document.Save(true);
}

using (WordDocument document = WordDocument.Load(filePath)) {
    foreach (var control in document.StructuredDocumentTags) {
        Console.WriteLine(control.Tag + ": " + control.Text);
    }
}

Advanced Content Control Usage

using (WordDocument document = WordDocument.Create(filePath)) {
    document.AddStructuredDocumentTag("First", "Alias1", "Tag1");
    document.AddStructuredDocumentTag("Second", "Alias2", "Tag2");
    document.Save(true);
}

using (WordDocument document = WordDocument.Load(filePath)) {
    var alias = document.GetStructuredDocumentTagByAlias("Alias2");
    alias.Text = "Updated";
    var tag = document.GetStructuredDocumentTagByTag("Tag1");
    Console.WriteLine(tag.Text);
}

Advanced usage of OfficeIMO

This short example shows multiple features of OfficeIMO.Word

string filePath = System.IO.Path.Combine(folderPath, "AdvancedDocument.docx");
using (WordDocument document = WordDocument.Create(filePath)) {
    // lets add some properties to the document
    document.BuiltinDocumentProperties.Title = "Cover Page Templates";
    document.BuiltinDocumentProperties.Subject = "How to use Cover Pages with TOC";
    document.ApplicationProperties.Company = "Evotec Services";

    // we force document to update fields on open, this will be used by TOC
    document.Settings.UpdateFieldsOnOpen = true;

    // lets add one of multiple added Cover Pages
    document.AddCoverPage(CoverPageTemplate.IonDark);

    // lets add Table of Content (1 of 2)
    document.AddTableOfContent(TableOfContentStyle.Template1);

    // lets add page break
    document.AddPageBreak();

    // lets create a list that will be binded to TOC
    var wordListToc = document.AddTableOfContentList(WordListStyle.Headings111);

    wordListToc.AddItem("How to add a table to document?");

    document.AddParagraph("In the first paragraph I would like to show you how to add a table to the document using one of the 105 built-in styles:");

    // adding a table and modifying content
    var table = document.AddTable(5, 4, WordTableStyle.GridTable5DarkAccent5);
    table.Rows[3].Cells[2].Paragraphs[0].Text = "Adding text to cell";
    table.Rows[3].Cells[2].Paragraphs[0].Color = Color.Blue; ;
    table.Rows[3].Cells[3].Paragraphs[0].Text = "Different cell";

    document.AddParagraph("As you can see adding a table with some style, and adding content to it ").SetBold().SetUnderline(UnderlineValues.Dotted).AddText("is not really complicated").SetColor(Color.OrangeRed);

    wordListToc.AddItem("How to add a list to document?");

    var paragraph = document.AddParagraph("Adding lists is similar to ading a table. Just define a list and add list items to it. ").SetText("Remember that you can add anything between list items! ");
    paragraph.SetColor(Color.Blue).SetText("For example TOC List is just another list, but defining a specific style.");

    var list = document.AddList(WordListStyle.Bulleted);
    list.AddItem("First element of list", 0);
    list.AddItem("Second element of list", 1);

    var paragraphWithHyperlink = document.AddHyperLink("Go to Evotec Blogs", new Uri("https://evotec.xyz"), true, "URL with tooltip");
    // you can also change the hyperlink text, uri later on using properties
    paragraphWithHyperlink.Hyperlink.Uri = new Uri("https://evotec.xyz/hub");
    paragraphWithHyperlink.ParagraphAlignment = JustificationValues.Center;

    list.AddItem("3rd element of list, but added after hyperlink", 0);
    list.AddItem("4th element with hyperlink ").AddHyperLink("included.", new Uri("https://evotec.xyz/hub"), addStyle: true);

    document.AddParagraph();

    // create a custom bullet list
    var custom = document.AddCustomBulletList(WordListLevelKind.BulletSquareSymbol, "Courier New", SixLabors.ImageSharp.Color.Red, fontSize: 16);
    custom.AddItem("Custom bullet item");

    // create a list using an image as the bullet
    var pictureList = document.AddPictureBulletList(Path.Combine(folderPath, "Images", "Kulek.jpg"));
    pictureList.AddItem("Image bullet 1");
    pictureList.AddItem("Image bullet 2");

    // create a multi-level custom list
    var builder = document.AddCustomList()
        .AddListLevel(1, WordListLevelKind.BulletSquareSymbol, "Courier New", SixLabors.ImageSharp.Color.Red, fontSize: 14)
        .AddListLevel(5, WordListLevelKind.BulletBlackCircle, "Arial", colorHex: "#00ff00", fontSize: 10);
    builder.AddItem("First");
    builder.AddItem("Fifth", 4);

    // Note: use AddCustomList() rather than AddList(WordListStyle.Custom)
    // when you want to build lists with your own levels.
    // See [Custom Lists](Docs/custom-lists.md) for details on configuring levels.

    var listNumbered = document.AddList(WordListStyle.Heading1ai);
    listNumbered.AddItem("Different list number 1");
    listNumbered.AddItem("Different list number 2", 1);
    listNumbered.AddItem("Different list number 3", 1);
    listNumbered.AddItem("Different list number 4", 1);

    var section = document.AddSection();
    section.PageOrientation = PageOrientationValues.Landscape;
    section.PageSettings.PageSize = WordPageSize.A4;

    wordListToc.AddItem("Adding headers / footers");

    // lets add headers and footers
    document.AddHeadersAndFooters();

    // adding text to default header
    document.Header.Default.AddParagraph("Text added to header - Default");

    var section1 = document.AddSection();
    section1.PageOrientation = PageOrientationValues.Portrait;
    section1.PageSettings.PageSize = WordPageSize.A5;

    wordListToc.AddItem("Adding custom properties to document");

    document.CustomDocumentProperties.Add("TestProperty", new WordCustomProperty { Value = DateTime.Today });
    document.CustomDocumentProperties.Add("MyName", new WordCustomProperty("Some text"));
    document.CustomDocumentProperties.Add("IsTodayGreatDay", new WordCustomProperty(true));

    // document variables available via DocVariable fields
    document.SetDocumentVariable("Project", "OfficeIMO");
    document.SetDocumentVariable("Year", DateTime.Now.Year.ToString());

    if (document.HasDocumentVariables) {
        foreach (var pair in document.DocumentVariables) {
            Console.WriteLine($"{pair.Key}: {pair.Value}");
        }
    }

    document.Save(openWord);
}

Tests

In addition to the fact that OfficeIMO.Word uses Unit Tests, Characterization Tests are also used. Characterization test were added in order to not overlook a change that breaks the behavior. These tests are based on Verify ("Snapshot Testing in .NET with Verify"). if you need to add or update a verified snapshot, you can use the powershell script:

$ pwsh -c ./Build/ApproveVerifyTests.ps1

To show a graphical diff instead of console output when Verify tests fail, set the environment variable DiffEngine_Disabled=false before running the tests.

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 is compatible.  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 is compatible.  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 is compatible.  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 OfficeIMO.Word:

Package Downloads
NTI.Toolkit.Reports

Create Html-, Txt-, Docx- and Xlsx-Reports.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.3 69 6/27/2025
1.0.2 90 6/26/2025
1.0.1 85 6/26/2025
1.0.0 115 6/25/2025
0.23.0 495 6/11/2025
0.22.0 3,463 4/1/2025
0.21.0 1,130 3/20/2025
0.20.0 14,928 9/27/2024
0.19.0 25,853 9/24/2024
0.18.0 2,645 9/22/2024
0.17.0 14,215 6/21/2024
0.16.0 3,746 6/17/2024
0.15.0 7,661 5/13/2024
0.14.0 12,996 4/4/2024
0.13.0 8,156 2/2/2024
0.12.0 3,496 12/31/2023
0.11.0 2,160 11/27/2023
0.10.0 7,124 10/24/2023
0.9.0 7,358 8/15/2023
0.8.0 4,304 7/30/2023
0.7.0 4,336 7/16/2023
0.6.0 764 7/3/2023
0.5.0 1,248 6/5/2023
0.4.9 11,071 3/19/2023
0.4.8 10,130 2/8/2023
0.4.7 3,459 1/14/2023
0.4.6 3,034 1/11/2023
0.4.5 838 1/9/2023
0.4.4 793 1/9/2023
0.4.3 796 1/9/2023
0.4.2 3,923 11/25/2022
0.4.1 861 11/20/2022
0.4.0 4,609 11/13/2022
0.3.1 2,044 10/18/2022
0.3.0 1,242 10/11/2022
0.2.1 1,208 7/31/2022
0.2.0 849 7/31/2022
0.1.7 994 6/12/2022
0.1.6 965 6/11/2022
0.1.5 906 6/4/2022
0.1.4 1,127 4/3/2022
0.1.3 951 4/3/2022
0.0.24 83 6/20/2025