Content controls

Content controls provide a way for you to design documents and templates that have these features:

About content controls

Content controls provide a UI that is optimized for both user input and print. When you add a content control to a document, the control is identified by a border, a title, and temporary text that can provide instructions to the user. The border and the title of the control do not appear in printed versions of the document.

For example, if you want the user to enter a date in a section of your document, you can add a date picker content control to the document. When users click the control, the standard date picker UI appears. You can also set properties of the control to set the regional calendar that is displayed and to specify the date format. After the user chooses a date, the UI of the control is hidden, and only the date appears if the user prints the document.

Content controls also help you do the following:

  • Prevent users from editing or deleting parts of a document. This is useful if you have information in a document or template that users should be able to read but not edit, or if you want users to be able to edit content controls but not delete them.

  • Bind parts of a document or template to data. You can bind content controls to database fields, managed objects in the .NET Framework, XML elements that are stored in the document, and other data sources.

    In document-level projects, you can add content controls to your document at design time or at run time. In VSTO Add-in projects, you can add content controls to any open document at run time. For more information, see How to: Add content controls to Word documents.

Note

You can use content controls only in documents that are saved in the Open XML format. You cannot use content controls in documents that are saved in the Word 97-2003 document (.doc) format.

Types of content controls

There are nine different types of content controls that you can add to documents. Most of the content controls have a corresponding type in the Microsoft.Office.Tools.Word namespace. You can also use a generic ContentControl, which can represent any of the available content controls. For a walkthrough that demonstrates how to use each of the available content controls, see Walkthrough: Create a template by using content controls.

A building block gallery enables users to select from a list of document building blocks to insert into a document. A document building block is a piece of content that has been created to be used multiple times, such as a common cover page, a formatted table, or a header. For more information, see the BuildingBlockGalleryContentControl type. For more information about building blocks, see What's new for developers in Word 2007.

Check box

A check box provides a UI that represents a binary state: selected or cleared.

Unlike the other types of content controls, the Visual Studio Tools for Office runtime does not provide a specific type that represents a check box content control. In other words, there is no CheckBoxContentControl type. However, you can still create a check box content control by adding a generic ContentControl to a document programmatically. For more information, see Check box content controls in Word projects.

Combo box

A combo box displays a list of items that users can select. Unlike a drop-down list, the combo box enables users to add their own items. For more information, see the ComboBoxContentControl type.

Date picker

A date picker provides a calendar UI for selecting a date. The calendar appears when the end user clicks the drop-down arrow in the control. You can use regional calendars and different date formats. For more information, see the DatePickerContentControl type.

A drop-down list displays a list of items that users can select. Unlike a combo box, the drop-down list does not let users add or edit items. For more information, see the DropDownListContentControl type.

Group

A group control defines a protected region of a document that users cannot edit or delete. A group control can contain any document items, such as text, tables, graphics, and other content controls. For more information, see the GroupContentControl type.

Picture

A picture control displays an image. You can specify the image at design time or run time, or users can click this control to select an image to insert in the document. For more information, see the PictureContentControl type.

Rich text

A rich text control contains text or other items, such as tables, pictures, or other content controls. For more information, see the RichTextContentControl type.

Plain text

A plain text control contains text. A plain text control cannot contain other items, such as tables, pictures, or other content controls. In addition, all of the text in a plain text control has the same formatting. For example, if you italicize one word of a sentence that is in a plain text control, all the text inside the control is italicized. For more information, see the PlainTextContentControl type.

Generic content control

A generic content control is a ContentControl object that can represent any of the available types of content controls. You can change a ContentControl object to behave like a different type of content control by using the Type property. For example, if you create a ContentControl object that represents a plain text control, you can change it at run time so that it behaves like a combo box.

You can create ContentControl objects only at run time, not at design time. For more information, see How to: Add content controls to Word documents.

Common features of content controls

Most content controls share a set of members that you can use to perform common tasks. The following table describes some of the tasks that you can perform by using these members.

For this task: Do this:
Get or set the text that is displayed in the control. Use the Text property. Note: The PictureContentControl and ContentControl types do not have this property.
Get or set the temporary text that is displayed in the control until a user edits the control, the control is populated with data from a data source, or the control's contents are deleted. Use the PlaceholderText property. Note: The PictureContentControl type does not have this property.
Get or set the title that is displayed in the border of the content control when the user clicks it. Use the Title property.
Remove the control from the document automatically after the user edits the control. (The text in the control remains in the document.) Use the Temporary property.
Run code when the user clicks in the content control, or when the cursor is moved into the content control programmatically. Handle the Entering event of the control.
Run code when the user clicks outside the content control, or when the cursor is moved outside the content control programmatically. Handle the Exiting event of the control.
Run code after the content control is added to the document as a result of a redo or undo operation. Handle the Added event of the control.
Run code just before the content control is deleted from the document. Handle the Deleting event of the control.

Protect parts of documents by using content controls

When you protect a part of a document, you prevent users from changing or deleting the content in that part of the document. There are several ways you can protect parts of a document by using content controls.

If the area you want to protect is inside a content control, you can use properties of the content control to prevent users from editing or deleting the control:

  • The LockContents property prevents users from editing the contents.

  • The LockContentControl property prevents users from deleting the control.

    If the area you want to protect is not inside a content control, or if you want to protect an area that contains content controls and other types of content, you can put the whole area in a GroupContentControl. Unlike other content controls, a GroupContentControl provides no UI that is visible to the user. Its only purpose is to define a region that users cannot edit.

Note

If you create a GroupContentControl that contains embedded content controls, the embedded content controls are not automatically protected. You must use the LockContents property of each embedded control to prevent users from editing their contents.

For more information about how to use content controls to protect parts of documents, see How to: Protect parts of documents by using content controls.

Bind data to content controls

You can display data in documents by binding a content control to a data source. When the data source is updated, the content control reflects the changes. You can also save changes back to the data source.

Content controls provide the following data binding options:

  • You can bind content controls to database fields or managed objects by using the same data binding model as Windows Forms.

  • You can bind content controls to elements in pieces of XML (also named custom XML parts) that are embedded in the document.

    For an overview of binding host controls in Office solutions to data, see Bind data to controls in Office solutions.

Use the Windows Forms data binding model

Most content controls support the simple data binding model that Windows Forms uses. Simple data binding means that a control is bound to a single data element, such as a value in a column of a data table. For more information, see Data binding and Windows Forms.

In document-level projects, you can bind data to content controls by using the Data Sources window in Visual Studio. For more information about how to add data-bound content controls to documents, see How to: Populate documents with data from a database and How to: Populate documents with data from objects.

The following table lists the content controls that you can bind to each data type in the Data Sources window.

Data type Default content control Other content controls that can be bound to this data type
Boolean

Byte

Char

Double

Enum

Guid

Int16

Int32

Int64

SByte

Single

String

TimeSpan

UInt16

UInt32

UInt64
PlainTextContentControl BuildingBlockGalleryContentControl

ComboBoxContentControl

DatePickerContentControl

RichTextContentControl
DateTime DatePickerContentControl BuildingBlockGalleryContentControl

ComboBoxContentControl

PlainTextContentControl

RichTextContentControl
Image

Byte array
PictureContentControl None

In document-level and VSTO Add-in projects, you can bind a content control to a data source programmatically by using the Add method of the DataBindings property of the control. If you do this, pass in the string Text to the propertyName parameter of the Add method. The Text property is the default data binding property of content controls.

Content controls also support two-way data binding, in which changes in the control are updated to the data source. For more information, see How to: Update a data source with data from a host control.

Note

Content controls do not support complex data binding. If you bind a DropDownListContentControl or ComboBoxContentControl to a data source by using the Windows Forms data model, users will see only a single value when they click the control. If you want to bind these controls to a set of data values that users can choose from, you can bind these controls to elements in a custom XML part.

Bind content controls to custom XML parts

You can bind some content controls to elements in custom XML parts that are embedded in the document. For more information about custom XML parts, see Custom XML parts overview.

To bind a content control to an element in a custom XML part, use the XMLMapping property of the control. The following code example demonstrates how to bind a PlainTextContentControl to the Price element under the Product node in a custom XML part that has already been added to the document.

plainTextContentControl1.XMLMapping.SetMapping("/Product/Price", String.Empty, null);

For a walkthrough that demonstrates how to bind content controls to custom XML parts in more detail, see Walkthrough: Bind content controls to custom XML parts.

When you bind a content control to a custom XML part, two-way data binding is automatically enabled. If a user edits text in the control, the corresponding XML elements are automatically updated. Similarly, if element values in the custom XML parts are changed, the content controls that are bound to the XML elements will display the new data.

You can bind the following types of content controls to custom XML parts:

Data bind events for content controls

All content controls provide a set of events that you can handle to perform data-related tasks, such as validating that the text in a control meets certain criteria before the data source is updated. The following table lists the content control events that are related to data binding.

Task Event
Run code just before Word automatically updates the text in a content control that is bound to a custom XML part. ContentUpdating
Run code just before Word automatically updates data in a custom XML part that is bound to a content control (that is, after the text in the content control changes). StoreUpdating
Run your own code to validate the contents of the control according to custom criteria. Validating
Run code after the contents of the control have been successfully validated. Validated

Limitations of content controls

When you use content controls in your Office projects, be aware of the following limitations.

Behavior differences between design time and runtime

Many of the limitations that Microsoft Office Word imposes on content controls at run time are not enforced at design time. When you design the UI of a document-level solution in Visual Studio, be sure to modify content controls only in ways that are supported at run time.

If you modify a content control at design time in a way that the control does not support at run time, the Visual Studio designer will not alert you of the unsupported changes. However, when you debug or run the project, or if you save and then reopen the project, Word will display an error message and request permission to repair the document. When you repair the document, Word removes all unsupported content and formatting from the control.

For example, Word does not prevent you from adding a table to a PlainTextContentControl at design time. However, because PlainTextContentControl objects cannot contain tables at run time, Word will display an error message when the document is opened.

Also note that many properties that define the behavior of content controls have no effect at design time. For example, if you set the LockContents property of a content control to True at design time, you can still edit text in the control in the Visual Studio designer. This property only prevents users from editing the control at run time.

Event limitations

Content controls do not provide an event that is raised when the user changes text or other items in the control. For example, there is no event that is raised when a user selects a different item in a DropDownListContentControl or ComboBoxContentControl.

To determine when a user edits the contents of a content control, you can bind the control to a custom XML part, and then handle the StoreUpdating event. This event is raised when the user changes the contents of a control that is bound to a custom XML part. For a walkthrough that demonstrates how to bind a content control to a custom XML part, see Walkthrough: Bind content controls to custom XML parts.

Check box content controls in Word projects

Word 2010 introduced a new type of content control that represents a check box. However, the Visual Studio Tools for Office runtime does not provide a corresponding CheckBoxContentControl type for you to use in Office projects. To create a check box content control in a Word 2013 or Word 2010 project, use the AddContentControl method to create a ContentControl object, and pass the wdContentControlCheckBox value to the method to specify a check box content control. The following code example demonstrates how to do this.

this.Paragraphs[1].Range.InsertParagraphBefore();
this.Paragraphs[1].Range.Select();
Microsoft.Office.Tools.Word.ContentControl checkBoxControl1 = 
    this.Controls.AddContentControl("checkBoxControl1", Word.WdContentControlType.wdContentControlCheckBox);

checkBoxControl1.Checked = true;