add_summary_zoom_frame method

add_summary_zoom_frame

Creates a new Summary Zoom frame and adds it to the end of the shape collection.

Returns

The newly created ISummaryZoomFrame.

def add_summary_zoom_frame(self, x, y, width, height):
    ...
ParameterTypeDescription
xfloatThe x-coordinate of the new Summary Zoom frame, in points.
yfloatThe y-coordinate of the new Summary Zoom frame, in points.
widthfloatThe width of the new Summary Zoom frame, in points.
heightfloatThe height of the new Summary Zoom frame, in points.

Examples

This example demonstrates adding a Summary Zoom object to the end of a collection (assume that there are at least two sections in the “Presentation.pptx” presentation):

Remarks

This method creates a new Summary Zoom and puts a collection of objects into it for all the sections in this presentation.

Exceptions

ExceptionDescription
PptxEditExceptionThrown if there are no sections in the presentation, or if the target slide does not belong to any section.

See Also