How to: Create and add a character style to a word processing document (Open XML SDK)
Last modified: March 25, 2013
Applies to: Office 2013 | Open XML
In this article
CreateAndAddCharacterStyle Method
About Style IDs, Style Names, and Aliases
Calling the Sample Method
Style Types
Character Style Type
How the Code Works
Creating the Style
Applying the Character Style
Sample Code
This topic shows how to use the classes in the Open XML SDK 2.5 for Office to programmatically create and add a character style to a word processing document. It contains an example CreateAndAddCharacterStyle method to illustrate this task, plus a supplemental example method to add the styles part when it is necessary.
To use the sample code in this topic, you must install the Open XML SDK 2.5. You must explicitly reference the following assemblies in your project:
-
WindowsBase
-
DocumentFormat.OpenXml (installed by the Open XML SDK)
You must also use the following using directives or Imports statements to compile the code in this topic.
The CreateAndAddCharacterStyle sample method can be used to add a style to a word processing document. You must first obtain a reference to the style definitions part in the document to which you want to add the style. See the Calling the Sample Method section for an example that shows how to do this.
The method accepts four parameters that indicate: a reference to the style definitions part, the style id of the style (an internal identifier), the name of the style (for external use in the user interface), and optionally, any style aliases (alternate names for use in the user interface).
The complete code listing for the method can be found in the Sample Code section.
The style ID is used by the document to refer to the style, and can be thought of as its primary identifier. Typically, you use the style ID to identify a style in code. A style can also have a separate display name shown in the user interface. Often, the style name, therefore, appears in proper case and with spacing (for example, Heading 1), while the style ID is more succinct (for example, heading1) and intended for internal use. Aliases specify alternate style names that can be used in an application’s user interface.
For example, consider the following XML code example taken from a style definition.
<w:style w:type="character" w:styleId="OverdueAmountChar" . . . <w:aliases w:val="Late Due, Late Amount" /> <w:name w:val="Overdue Amount Char" /> . . . </w:style>
The style element styleId attribute defines the main internal identifier of the style, the style ID (OverdueAmountChar). The aliases element specifies two alternate style names, Late Due, and Late Amount, which are comma separated. Each name must be separated by one or more commas. Finally, the name element specifies the primary style name, which is the one typically shown in an application’s user interface.
You can use the CreateAndAddCharacterStyle example method to create and add a named style to a word processing document using the Open XML SDK. The following code example shows how to open and obtain a reference to a word processing document, retrieve a reference to the document’s style definitions part, and then call the CreateAndAddCharacterStyle method.
To call the method, you pass a reference to the style definitions part as the first parameter, the style ID of the style as the second parameter, the name of the style as the third parameter, and optionally, any style aliases as the fourth parameter. For example, the following code example creates the "Overdue Amount Char" character style in a sample file that is named CreateAndAddCharacterStyle.docx. It also creates three runs of text in a paragraph, and applies the style to the second run.
WordprocessingML supports six style types, four of which you can specify using the type attribute on the style element. The following information, from section 17.7.4.17 in the ISO/IEC 29500 specification, introduces style types.
Style types refers to the property on a style which defines the type of style created with this style definition. WordprocessingML supports six types of style definitions by the values for the style definition's type attribute:
-
Paragraph styles
-
Character styles
-
Linked styles (paragraph + character) [Note: Accomplished via the link element (§17.7.4.6). end note]
-
Table styles
-
Numbering styles
-
Default paragraph + character properties
[Example: Consider a style called Heading 1 in a document as shown in the following code example.
<w:style w:type="paragraph" w:styleId="Heading1"> <w:name w:val="heading 1"/> <w:basedOn w:val="Normal"/> <w:next w:val="Normal"/> <w:link w:val="Heading1Char"/> <w:uiPriority w:val="1"/> <w:qformat/> <w:rsid w:val="00F303CE"/> … </w:style>
The type attribute has a value of paragraph, which indicates that the following style definition is a paragraph style. end example]
© ISO/IEC29500: 2008.
You can set the paragraph, character, table and numbering styles types by specifying the corresponding value in the style element’s type attribute.
You specify character as the style type by setting the value of the type attribute on the style element to "character".
The following information from section 17.7.9 of the ISO/IEC 29500 specification discusses character styles. Be aware that section numbers preceded by § indicate sections in the ISO specification.
17.7.9 Run (Character) Styles
Character styles are styles which apply to the contents of one or more runs of text within a document’s contents. This definition implies that the style can only define character properties (properties which apply to text within a paragraph) because it cannot be applied to paragraphs. Character styles can only be referenced by runs within a document, and they shall be referenced by the rStyle element within a run’s run propertieselement.
A character style has two defining style type-specific characteristics:
-
The type attribute on the style has a value of character, which indicates that the following style definition is a character style.
-
The style specifies only character-level properties using the rPr element. In this case, the run properties are the set of properties applied to each run which is of this style.
The character style is then applied to runs by referencing the styleId attribute value for this style in the run properties’ rStyle element.
© ISO/IEC29500: 2008.
The following image shows some text that has had a character style applied. A character style can only be applied to a sub-paragraph level range of text.
To create the style, the code instantiates the Style class and sets certain properties, such as the Type of style (paragraph), the StyleId, and whether the style is a CustomStyle.
The code results in the following XML.
<w:style w:type="character" w:styleId="OverdueAmountChar" w:customStyle="true" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"> </w:style>
The code next creates the child elements of the style, which define the properties of the style. To create an element, you instantiate its corresponding class, and then call the Append([]) method to add the child element to the style. For more information about these properties, see section 17.7 of the ISO/IEC 29500 specification.
Next, the code instantiates a StyleRunProperties object to create a rPr (Run Properties) element. You specify the character properties that apply to the style, such as font and color, in this element. The properties are then appended as children of the rPr element.
When the run properties are created, the code appends the rPr element to the style, and the style element to the styles root element in the styles part.
The following XML shows the final style generated by the code shown here.
<w:style w:type="character" w:styleId="OverdueAmountChar" w:customStyle="true" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
<w:aliases w:val="Late Due, Late Amount" />
<w:name w:val="Overdue Amount Char" />
<w:link w:val="OverdueAmountPara" />
<w:rPr>
<w:rFonts w:ascii="Tahoma" />
<w:sz w:val="48" />
<w:color w:themeColor="accent2" />
<w:b />
<w:i />
</w:rPr>
</w:style>
Once you have the style created, you can apply it to a run by referencing the styleId attribute value for this style in the run properties’ rStyle element. The following code example shows how to apply a style to a run referenced by the variable r. The style ID of the style to apply, OverdueAmountChar in this example, is stored in the RunStyle property of the rPr object. This property represents the run properties’ rStyle element.
|
Contribute to this article Want to edit or suggest changes to this content? You can edit and submit changes to this article using GitHub. |