MCPcopy Create free account
hub / github.com/scanny/python-pptx / CT_SlideSize

Class CT_SlideSize

src/pptx/oxml/presentation.py:118–130  ·  view source on GitHub ↗

`p:sldSz` element. Direct child of that contains the width and height of slides in the presentation.

Source from the content-addressed store, hash-verified

116
117
118class CT_SlideSize(BaseOxmlElement):
119 """`p:sldSz` element.
120
121 Direct child of <p:presentation> that contains the width and height of slides in the
122 presentation.
123 """
124
125 cx: Length = RequiredAttribute( # pyright: ignore[reportAssignmentType]
126 "cx", ST_SlideSizeCoordinate
127 )
128 cy: Length = RequiredAttribute( # pyright: ignore[reportAssignmentType]
129 "cy", ST_SlideSizeCoordinate
130 )

Callers

nothing calls this directly

Calls 1

RequiredAttributeClass · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…