Click here to Skip to main content
15,885,782 members
Articles / Productivity Apps and Services / Microsoft Office

Utility to Generate Word Documents from Templates Using Visual Studio 2010 and Open XML 2.0 SDK – Part 2 (Samples Updated)

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
12 Jan 2012CPOL5 min read 28.3K   8  
This is the second post of this series.

This is the second post of this series. The previous post can be read at Part 1. The next post can be read at Part 3.

In Part 1, I discussed about:

  • Document generation using Content Controls and Open XML 2.0 SDK
  • Creating Word templates
  • Implementation and samples

In Part 3, I explained one of the ways to “Refresh the document from within the document (e.g., right click on document and click Refresh) using document-level projects for Word 2007 and Word 2010“. In this post, I’ll discuss:

  • List of functionalities that can be achieved using the utility/source code
  • Description regarding samples provided with utility
  • New samples added in this update

The sample document generators are discussed later. The functionalities that can be achieved using the utility/source code are:

Document Generation

  1. Generate document from a Word template using content controls as place holders and populate controls with data (Object) [SampleDocumentGenerator, SampleRefreshableDocumentGenerator, SampleDocumentWithTableGenerator]
  2. Generate document from a Word template using content controls as place holders (data bound content controls) and populate controls with data (Object is serialized to XML). [SampleDocumentGeneratorUsingDatabinding, SampleDocumentWithTableGeneratorUsingDatabinding, SampleDocumentGeneratorUsingXmlAndDatabinding]
  3. Generate document from a Word template using content controls as place holders and populate controls with data (XmlNode) [SampleDocumentGeneratorUsingXml]
  4. Generate document from a Word template using content controls as place holders (data bound content controls) and populate controls with data (XmlNode) [SampleDocumentGeneratorUsingXmlAndDatabinding]
  5. Refresh the document from within the document (e.g., right click on document and click Refresh) using document-level projects for Word 2007 and Word 2010 [Explained in the next post, i.e., Part 3]
  6. Generate document that can be
    1. Standalone: Once generated, document cannot be refreshed.
    2. Refreshable: Once generated, document can be refreshed. Content controls will be added/updated/deleted and content control's content will be refreshed as per data.
  7. Append documents using AltChunk
  8. Protect document
  9. UnProtect document
  10. Removal of Content Controls from a document while keeping contents
  11. Removal of foot notes
  12. Ensuring that each content control has unique Ids by fixing the duplicate Ids if any for a document
  13. Serializing an Object to XML using XmlSerializer (used for document generation using data bound content controls as serialized object is written to CustomXmlPart)

Content Controls

  1. Set text of a content control (not applicable for data bound content controls)
  2. Get text from a content control (not applicable for data bound content controls)
  3. Set text of content control while keeping PermStart and PermEnd elements (not applicable for data bound content controls)
  4. Set Tag of a content control
  5. Get Tag of a content control
  6. Set data binding of a content control
  7. Set text of a data bound content control from CustomXmlPart manually. This is helpful in cases when CustomXmlPart needs to be removed and this copies the text from the CustomXmlPart node using XPath.

CustomXmlPart

  1. Adding a CustomXmlPart to a document
  2. Removing CustomXmlPart from a document
  3. Getting CustomXmlPart from a document
  4. Add/Update an XML element node inside CustomXmlPart. This is required
    1. To keep Document related metadata, e.g., Document type, version, etc.
    2. To make the Document self-refreshable. In this case, the container content control is persisted inside a Placeholder node, the first time document is generated from template. Onwards when refreshing document, we fetch the container content control from CustomXmlPart.
    3. Saving the XML, e.g., serialized object which will be the data store for data bound content controls

Sample Generators

image_thumb

image_thumb1

image_thumb2

  1. SampleDocumentGenerator: This sample shows how to generate a non-refreshable document from a template. The content controls are populated using C# code, i.e., not using data bound content controls. The screenshot is:
  2. SampleRefreshableDocumentGenerator: This sample shows how to generate a refreshable document from a template. The content controls are populated using C# code, i.e., not using data bound content controls. This is similar to SampleDocumentGenerator in implementation. The only difference is the generated document can be refreshed in this case. The screenshot is shown here:
  3. SampleDocumentWithTableGenerator: This sample shows how to generate a refreshable document from a template having Table. The content controls are populated using C# code, i.e., not using data bound controls. This is similar to SampleRefreshableDocumentGenerator in implementation. The only difference is that the template has an additional table. The screenshot is shown here:
  4. SampleDocumentGeneratorUsingDatabinding: This sample shows how to generate a refreshable document from a template using data bound content controls. This requires that each of the placeholders (template’s content control) has a predefined XPath. The generated document is similar to SampleRefreshableDocumentGenerator.
  5. SampleDocumentWithTableGeneratorUsingDatabinding: This sample shows how to generate a refreshable document from a template having table using data bound content controls. This requires that each of the placeholders (template’s content control) has a predefined XPath. The generated document is similar to SampleDocumentWithTableGenerator.
  6. SampleDocumentGeneratorUsingXml (New): This sample shows how to generate a document from a template using XmlNode as data. This approach shows that a generic generator can be created which requires XML as data. This requires that XPath for Tag as well as content need to be provided. The content controls are populated using C# code, i.e., not using data bound controls. It covers both direct assignment as well as recursive controls. The generated document is similar to SampleDocumentGenerator.
  7. SampleDocumentGeneratorUsingXmlAndDatabinding (New): This sample shows how to generate a document from a template using XmlNode as data and data bound content controls. This approach shows that a generic generator can be created which requires XML as data. This requires that XPath for Tag as well as content needs to be provided. It covers both direct assignment as well as recursive controls. The generated document is similar to SampleDocumentGenerator.
This article was originally posted at http://www.atulverma.com/feeds/posts/default

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
India India
Atul works at Microsoft as a .NET consultant. As a consultant his job is to design, develop and deploy enterprise level secure and scalable solutions using Microsoft Technologies.

His technical expertise include .NET Framework(4.0, 3.5, 3.0), WPF, WCF, SharePoint 2010, ASP.net, AJAX, Web Services, Enterprise Applications, SQL Server 2008, Open Xml, MS Word Automation.

Follow him on twitter @verma_atul

He blogs at
http://www.atulverma.com
http://blogs.msdn.com/b/atverma

Comments and Discussions

 
-- There are no messages in this forum --