insert_zoom_frame method

insert_zoom_frame

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

Returns

Created Zoom object IZoomFrame.

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

Exceptions

ExceptionDescription
RuntimeError(Proxy error(ArgumentException))Referenced slide does not belong to the current presentation.

insert_zoom_frame

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

Returns

Created Zoom object IZoomFrame.

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

Exceptions

ExceptionDescription
RuntimeError(Proxy error(ArgumentException))Referenced slide does not belong to the current presentation.

See Also