insert_summary_zoom_frame method

insert_summary_zoom_frame

Creates a new Summary Zoom frame and inserts it into the shape collection at the specified index.

Returns

The newly created ISummaryZoomFrame.

def insert_summary_zoom_frame(self, index, x, y, width, height):
    ...
ParameterTypeDescription
indexintThe zero-based index at which to insert the Summary Zoom frame.
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 creation and inserting a Summary Zoom object at the specified index of a collection (assume that there are at least two sections in the “Presentation.pptx” presentation):

Remarks

This method creates a Summary Zoom frame that aggregates summary links for all sections in the presentation.

Exceptions

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

See Also