<custShow> (Custom Show)

This element specifies a custom show that defines a specific slide sequence that the slides will be displayed in. This allows for many variants of the same set of slides to be presented.

example:
<p:custShow name="Custom Show 1" id="0">
  <p:sldLst>
    <p:sld r:id="rId5"/>
    <p:sld r:id="rId2"/>
    <p:sld r:id="rId4"/>
  </p:sldLst>
</p:custShow>

Notice here that the custom show specifies a show, or presentation, where slide 5 will be shown first, then slide 2 and finally slide 4. ]

Parent Elements

<custShowLst>4.3.1.6)

Child Elements

Subclause

<extLst> (Extension List)

§4.2.5

<sldLst> (List of Presentation Slides)

§4.3.1.31

Attributes

Description

<id> (Custom Show ID)

Specifies the identification number for this custom show. This should be unique among all the custom shows within the corresponding presentation.

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

<name> (Custom Show Name)

Specifies a name for the custom show.

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

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

<complexType name="CT_CustomShow">
	<sequence>
	<element name="sldLst" type="CT_SlideRelationshipList" minOccurs="1" maxOccurs="1"/>
	<element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
	</sequence>
	<attribute name="name" type="ST_Name" use="required"/>
	<attribute name="id" type="xsd:unsignedInt" use="required"/>
</complexType>