[Table of Contents] [docx version]

PresentationML Reference Material - Table of Contents

sldSz (Presentation Slide Size)

This element specifies the size of the presentation slide surface. Objects within a presentation slide can be specified outside these extents, but this is the size of background surface that will be shown when the slide is presented or printed..

[Example: Consider the following specifying of the size of a presentation slide.

<p:presentation xmlns:a="" xmlns:r="" xmlns:p="" embedTrueTypeFonts="1">

..

<p:sldSz cx="9144000" cy="6858000" type="screen4x3"/>

..

</p:presentation>

end example]

Parent Elements

presentation4.3.1.24)

 

Attributes

Description

cx (Extent Length)

Specifies the length of the extents rectangle in EMUs. This rectangle shall dictate the size of the object as displayed (the result of any scaling to the original object).

 

[Example: Consider a DrawingML object specified as follows:

 

<… cx="1828800" cy="200000"/>

 

The cx attributes specifies that this object has a height of 1828800 EMUs (English Metric Units). end example]

 

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

cy (Extent Width)

Specifies the width of the extents rectangle in EMUs. This rectangle shall dictate the size of the object as displayed (the result of any scaling to the original object).

 

[Example: Consider a DrawingML object specified as follows:

 

< … cx="1828800" cy="200000"/>

 

The cy attribute specifies that this object has a width of 200000 EMUs (English Metric Units). end example]

 

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

type (Type of Size)

Specifies the type of slide size that should be used. This identifies in particular the expected delivery platform for this presentation.

 

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

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

<complexType name="CT_SlideSize">

   <attribute name="cx" type="ST_SlideSizeCoordinate" use="required"/>

   <attribute name="cy" type="ST_SlideSizeCoordinate" use="required"/>

   <attribute name="type" type="ST_SlideSizeType" use="optional" default="custom"/>

</complexType>