<embedBold>
(Bold Style Font Style Embedding)
This element specifies information about the embedded font storage for the bold form of a font, when it is embedded. This form is used when bold is applied to a text run.
If this element is omitted, then no bold form of the font is stored in the document. The relationship targeted by the @id
attribute must be of the embedded font type, or the document shall be considered to be invalid.
<w:font w:name="Arial"> … <w:embedBold r:id="rId10" /> </w:font>
The @embedBold
element specifies that the embedded font targeted with the relationship with ID rId10
may be used to retrieve the bold form of the embedded Arial font. ]
Parent Elements |
---|
|
Attributes |
Description |
---|---|
|
Specifies the key which was used to obfuscate this embedded font. This key may be used to retrieve the embedded font for the purposes of viewing this WordprocessingML document only, using the algorithm described in §2.8.1. If this attribute is omitted, then no key is provided for this font. <w:font w:name="Arial"> … <w:embedRegular r:id="rId10" w:fontKey="{302EE813-EB4A-4642-A93A-89EF99B2457E}" /> </w:font> The The possible values for this attribute are defined by the ST_Guid simple type (§2.18.39). |
Namespace: .../officeDocument/2006/relationships |
Specifies the relationship ID to a specified part. The specified relationship shall match the type required by the parent element:
<… r:id="rId10" /> The markup specifies the associated relationship part with relationship ID The possible values for this attribute are defined by the ST_RelationshipId simple type (§7.8.2.1). |
|
Specifies that the embedded font targeted by the If this attribute is omitted, then the embedded font target by the <w:font w:name="Arial"> … <w:embedRegular r:id="rId10" w:subsetted="true" /> </w:font> The The possible values for this attribute are defined by the ST_OnOff simple type (§2.18.67). |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_FontRel">
<complexContent>
<extension base="CT_Rel">
<attribute name="fontKey" type="ST_Guid"/>
<attribute name="subsetted" type="ST_OnOff"/>
</extension>
</complexContent>
</complexType>