<buFont> (Specified)

This element specifies the font to be used on bullet characters within a given paragraph. The font is specified using the typeface that it is registered as within the generating application.

example:
<p:txBody><a:p>
    <a:pPr …>
      <a:buFont typeface="Arial"/>
      <a:buChar char="g"/>
    </a:pPr><a:t>Bullet 1</a:t></a:p></p:txBody>

The font of the above bullet will not follow the text font but instead will have Arial font specified by <typeface="Arial">. This font should only apply to the actual bullet character and not to the text within the bullet. ]

Parent Elements

<defPPr>5.1.5.2.2); <lvl1pPr>5.1.5.4.13); <lvl2pPr>5.1.5.4.14); <lvl3pPr>5.1.5.4.15); <lvl4pPr>5.1.5.4.16); <lvl5pPr>5.1.5.4.17); <lvl6pPr>5.1.5.4.18); <lvl7pPr>5.1.5.4.19); <lvl8pPr>5.1.5.4.20); <lvl9pPr>5.1.5.4.21); <pPr>5.1.5.2.7)

Attributes

Description

<charset> (Similar Character Set)

Specifies the most similar character set to the one being used. This is useful if the generating application cannot use the current font and must choose a similar one.

The possible values for this attribute are defined by the XML Schema byte datatype.

<panose> (Panose Setting)

Specifies the panose standard setting that will be used to determine the closest matching font by any generating application that employs this method.

The possible values for this attribute are defined by the ST_Panose simple type (§5.1.12.37).

<pitchFamily> (Similar Font Family)

Specifies the most similar font family to the one being used. This is useful if the generating application cannot use the current font and must choose a similar one.

The possible values for this attribute are defined by the XML Schema byte datatype.

<typeface> (Text Typeface)

Specifies the typeface, or name of the font that is to be used for a bullet. The typeface used here should be selected from the font list of the generating application.

The possible values for this attribute are defined by the ST_TextTypeface simple type (§5.1.12.81).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_TextFont">
	<attribute name="typeface" type="ST_TextTypeface"/>
	<attribute name="panose" type="ST_Panose" use="optional"/>
	<attribute name="pitchFamily" type="xsd:byte" use="optional" default="0"/>
	<attribute name="charset" type="xsd:byte" use="optional" default="1"/>
</complexType>