DocxTemplater 1.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package DocxTemplater --version 1.0.1                
NuGet\Install-Package DocxTemplater -Version 1.0.1                
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="DocxTemplater" Version="1.0.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DocxTemplater --version 1.0.1                
#r "nuget: DocxTemplater, 1.0.1"                
#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 DocxTemplater as a Cake Addin
#addin nuget:?package=DocxTemplater&version=1.0.1

// Install DocxTemplater as a Cake Tool
#tool nuget:?package=DocxTemplater&version=1.0.1                

DocxTemplater

DocxTemplater is a library to generate docx documents from a docx template. The template can be bound to multiple datasources and be edited by non-programmers. It supports placeholder replacement and loops and images

CI-Build

Features:

  • Variable Replacement
  • Loops - Bind to collections
  • Conditional Blocks
  • HTML Snippets - Replace placeholder with HTML Content
  • Images - Replace placeholder with Image data

Quickstart

Create a docx template with placeholder syntax

This Text: {{ds.Title}} - will be replaced

Open the template, add a model and store the result to a file

ver template = DocxTemplate.Open("template.docx")
template.AddModel("ds", new {Title = "Some Text"})
template.ProcessToFile("generated.docx")

The generated word document then contains

This Text: Some Text - will be replaced

Install DocxTemplater via NuGet

If you want to include DocxTemplater in your project, you can install it directly from NuGet

To install DocxTemplater, run the following command in the Package Manager Console

PM> Install-Package DocxTemplater

or for Image support

PM> Install-Package DocxTemplater.Images

Placeholder Syntax

A placholder can consist of three parts: {{property}:formatter(arguments)}

  • property: the path to the property in the datasource objects.
  • formatter: formatter applied to convert the model value to openxml (ae. toupper, tolower img format etc)
  • arguments: formatter arguments - some formatter have arguments

The syntax is case insensitive

Quick Reference: (Expamples)

Syntax Desciption
{{SomeVar}} Simple Variable replacement
{{someVar > 5}}...{{else}}...{{/}} Conditional blocks
{{/Items}}...{{Items.Name}} ... {{/Items}} Text block bound to collection items
{{SomeString:ToUpper()}} Variable with formatter to upper
{{SomeDate:Format("MM/dd/yyyy")}} Date variable with formatting
{{SomeDate:F("MM/dd/yyyy")}} Date variable with formatting - short syntax
{{SomeBytes:img()}} Image Formatter for image data
{{SomeHtmlString:html()}} Inserts html string into word document

Loops

To repeat document content for each item in a collection the loop syntax can be used: {{#<collection>}} .. content .. {{<collection>}} All document content between the start and end tag is rendered for each element in the collection.

{{#Items}} This text {{Items.Name}} is rendered for each element in the items collection {{/items}}

This can be used, for example, to bind a collection to a table. In this case, the start and end tag has to be placed in the row of the table

Name Position
{{#Items}} {{Items.Name}} {{Items.Position}} **{{/Items}}*

This template bound to a model:

            var template = DocxTemplate.Open("template.docx");
            var model = new
            {
                Items = new[]
                {
                    new { Name = "John", Position = "Developer" },
                    new { Name = "Alice", Position = "CEO" }
                }
            };
            template.BindModel("ds", model);
            template.Save("generated.docx");

will render a table row for each item in the collection

Name Position
John Developer
Alice CEO

Conditional Blocks

Show or hide a given section depending on a condition: {{<condition>}} .. content .. {{/}} All document content between the start and end tag is rendered only if the condition is met

{{Item.Value >= 0}}Only visible if value is >= 0 {{/}}
{{Item.Value < 0}}Otherwise this text is shown{{/}}

Formatters

If no formatter is specified, the model value is converted into a text with "ToString".

This is not sufficient for all data types. That is why there are formatters that convert text or binary data into the desired representation

The formatter name is always case insensitive

String Formatters

  • ToUpper, ToLower

FormatPatterns

Any type that implements IFormattable can be formatted with the standard format strings for this type

See: Standard date and time format strings Standard numeric format strings .. and many more

Examples: {{SomeDate}:format(d)} ----> "6/15/2009" (en-US) {{SomeDouble}:format(f2)} ----> "1234.42" (en-US)

Image Formatter


NOTE: for the Image formatter the nuget package DocxTemplater.Images is required


Because the image formatter is not standard, it must be added

var docTemplate = new DocxTemplate(fileStream);
docTemplate.RegisterFormatter(new ImageFormatter());

The image formatter replaces a placeholder with an image stored in a byte array

The placeholder can be placed in a TextBox so that the end user can easily adjust the image size in the template. The size of the image is then adapted to the size of the TextBox.

The stretching behavior can be configured

Arg Example Description
KEEPRATIO {{imgData}:img(keepratio)} Scales the image to fit the container - keeps aspect ratio
STRETCHW {imgData}:img(STRETCHW)} Scales the image to fit the width of the container
STRETCHH {imgData}:img(STRETCHH)} Scales the image to fit the height of the container
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on DocxTemplater:

Package Downloads
DocxTemplater.Images

Easily bind data models to word templates

DocxTemplater.Markdown

Easily bind data models to word templates

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.3.4 164 11/7/2024
2.3.3 122 10/31/2024
2.3.2 95 10/30/2024
2.3.1 183 10/3/2024
2.3.0 637 6/19/2024
2.3.0-beta 96 6/12/2024
2.3.0-alpha 75 6/5/2024
2.2.1 114 5/21/2024
2.2.0 600 2/26/2024
2.0.0 122 2/5/2024
2.0.0-beta 86 1/26/2024
2.0.0-alpha 71 6/5/2024
1.2.0 128 1/21/2024
1.0.3 105 1/18/2024
1.0.2 118 1/11/2024
1.0.1 100 1/11/2024
0.2.0 103 1/10/2024