<buChar> (Character Bullet)

This element specifies that a character be applied to a set of bullets. These bullets are allowed to be any character in any font that the system is able to support. If no bullet font is specified along with this element then the paragraph font will be used.

example:

<p:txBody><a:p>
    <a:pPr …>
      <a:buFont typeface="Calibri"/>
      <a:buChar char="g"/>
    </a:pPr><a:t>Bullet 1</a:t></a:p>
  <a:p>
    <a:pPr lvl="1"…>
      <a:buFont typeface="Calibri"/>
      <a:buChar char="g"/>
    </a:pPr><a:t>Bullet 2</a:t></a:p>
  <a:p>
    <a:pPr …>
      <a:buFont typeface="Calibri"/>
      <a:buChar char="g"/>
    </a:pPr><a:t>Bullet 3</a:t></a:p></p:txBody>

For the above text there are a total of three bullet points. Two of which are at <lvl="0"> and one at <lvl="1">. Because the same character is specified for each bullet the levels do not stand out here. The only difference is the indentation as shown in the picture above. ]

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

<char> (Bullet Character)

Specifies the character to be used in place of the standard bullet point. This character may be any character for the specified font that will be supported by the system upon which this document is being viewed.

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

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

<complexType name="CT_TextCharBullet">
	<attribute name="char" type="xsd:string" use="required"/>
</complexType>