insert_section_zoom_frame method

insert_section_zoom_frame

Creates a new Section Zoom object and inserts into to a collection at the specified index.

Returns

Created Section Zoom object ISectionZoomFrame.

def insert_section_zoom_frame(self, index, x, y, width, height, section):
    ...
ParameterTypeDescription
indexintThe zero-based index at which Section Zoom frame should be inserted.
xfloatX coordinate of a new Section Zoom frame float.
yfloatY coordinate of a new Section Zoom frame float.
widthfloatWidth of a new Section Zoom frame float.
heightfloatHeight of a new Section Zoom frame float.
sectionISectionThe slide object referenced by the Section Zoom frame ISection.

Exceptions

ExceptionDescription
RuntimeError(Proxy error(ArgumentException))Referenced section does not belong to the current presentation or does not contains any slides.

insert_section_zoom_frame

Creates a new Section Zoom object and inserts it to a collection at the specified index.

Returns

Created Section Zoom object ISectionZoomFrame.

def insert_section_zoom_frame(self, index, x, y, width, height, section, image):
    ...
ParameterTypeDescription
indexintThe zero-based index at which Section Zoom frame should be inserted.
xfloatX coordinate of a new Section Zoom frame float.
yfloatY coordinate of a new Section Zoom frame float.
widthfloatWidth of a new Section Zoom frame float.
heightfloatHeight of a new Section Zoom frame float.
sectionISectionThe slide object referenced by the Section Zoom frame ISection.
imageIPPImageThe image for the referenced slide IPPImage

Exceptions

ExceptionDescription
RuntimeError(Proxy error(ArgumentException))Referenced section does not belong to the current presentation or does not contains any slides.

See Also