//To run this example code, create a word document called ExampleTemplate.docx with the text [ReplaceMe] in the document
WordReportsGenerator generator = new WordReportsGenerator(); //Trial Mode
//WordReportsGenerator generator = new WordReportsGenerator("place user name here", "place license key here"); //License Mode
const string sourceDocumentPath = @"Test Documents\ExampleTemplate.docx";
const string outputDocumentPath = "ExampleOutput.docx";
using (Document document = generator.DocumentFactory(sourceDocumentPath))
{
DataTable dataTable = new DataTable();
dataTable.Columns.Add("FirstName", typeof(string));
dataTable.Rows.Add("John");
Dictionary<string, ReplacementItem> replacement =
new Dictionary<string, ReplacementItem>
{
{
"[ReplaceMe]",
new ReplacementItem {Value = dataTable}
}
};
generator.Config.InsertSpacesIntoHeaderColumns = false;
generator.Replace(document, replacement);
generator.SaveDocument(document, outputDocumentPath);
}