[Table of Contents] [docx version]
PresentationML Reference Material - Table of Contents
This element specifies a text range to animate based on starting and ending paragraph number.
[Example: Consider an animation entrance of the first 3 text paragraphs. The <pRg> element should be used as follows:
<p:animEffect transition="in" filter="checkerboard(across)">
<p:cBhvr>
<p:cTn id="12" dur="500"/>
<p:tgtEl>
<p:spTgt spid="3">
<p:txEl>
<p:pRg st="0" end="2"/>
</p:txEl>
</p:spTgt>
</p:tgtEl>
</p:cBhvr>
</p:animEffect>
End Example]
Parent Elements |
txEl (§4.6.91) |
Attributes |
Description |
end (End) |
This attribute defines the end of the index range.
The possible values for this attribute are defined by the ST_Index simple type (§4.8.7). |
st (Start) |
This attribute defines the start of the index range.
The possible values for this attribute are defined by the ST_Index simple type (§4.8.7). |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_IndexRange">
<attribute name="st" type="ST_Index" use="required"/>
<attribute name="end" type="ST_Index" use="required"/>
</complexType>