<sld> (Presentation Slide)

This element specifies a slide within a slide list. The slide list is used to specify an ordering of slides.

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

In the above example the order specified to present the slides is slide 4, then 3, 2 and finally 5. ]

Parent Elements

Root element of PresentationML Slide part

Child Elements

Subclause

<clrMapOvr> (Color Scheme Map Override)

§4.4.1.7

<cSld> (Common Slide Data)

§4.4.1.15

<extLst> (Extension List with Modification Flag)

§4.2.4

<timing> (Slide Timing Information for a Slide Layout)

§4.4.1.44

<transition> (Slide Transition for a Slide Layout)

§4.4.1.46

Attributes

Description

<show> (Show Slide in Slide Show)

Specifies that the current slide should be shown in slide show. If this attribute is omitted then a value of true is assumed.

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

<showMasterPhAnim> (Show Master Placeholder Animations)

Specifies whether or not to display animations on placeholders from the master slide.

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

<showMasterSp> (Show Master Shapes)

Specifies if shapes on the master slide should be shown on slides or not.

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

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

<complexType name="CT_Slide">
	<sequence minOccurs="1" maxOccurs="1">
	<element name="cSld" type="CT_CommonSlideData" minOccurs="1" maxOccurs="1"/>
	<group ref="EG_ChildSlide" minOccurs="0" maxOccurs="1"/>
	<element name="transition" type="CT_SlideTransition" minOccurs="0" maxOccurs="1"/>
	<element name="timing" type="CT_SlideTiming" minOccurs="0" maxOccurs="1"/>
	<element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/>
	</sequence>
	<attributeGroup ref="AG_ChildSlide"/>
	<attribute name="show" type="xsd:boolean" use="optional" default="true"/>
</complexType>