InsertZoomFrame

InsertZoomFrame(int, float, float, float, float, ISlide)

创建一个新的 Zoom 对象并将其插入到指定索引处的集合中。

public IZoomFrame InsertZoomFrame(int index, float x, float y, float width, float height, 
    ISlide slide)
范围类型描述
indexInt32零-应插入缩放帧的基于索引。
xSingle新缩放框的 X 坐标Single。
ySingle新缩放框的 Y 坐标Single。
widthSingle新缩放框的宽度Single。
heightSingle新缩放框的高度Single。
slideISlideZoom frameISlide引用的幻灯片对象。

返回值

创建缩放对象IZoomFrame

例外

例外(健康)状况
ArgumentException引用的幻灯片不属于当前演示文稿。

例子

此示例演示在集合的指定索引处创建和插入缩放对象 (假设“Presentation.pptx”演示文稿中至少有两张幻灯片):

[C#]
using (Presentation pres = new Presentation("Presentation.pptx"))
{
    IZoomFrame zoomFrame = pres.Slides[0].Shapes.InsertZoomFrame(2, 150, 20, 50, 50, pres.Slides[1]);
}

也可以看看


InsertZoomFrame(int, float, float, float, float, ISlide, IPPImage)

创建一个新的 Zoom 对象并将其插入到指定索引处的集合中。

public IZoomFrame InsertZoomFrame(int index, float x, float y, float width, float height, 
    ISlide slide, IPPImage image)
范围类型描述
indexInt32零-应插入缩放帧的基于索引。
xSingle新缩放框的 X 坐标Single。
ySingle新缩放框的 Y 坐标Single。
widthSingle新缩放框的宽度Single。
heightSingle新缩放框的高度Single。
slideISlideZoom frameISlide引用的幻灯片对象。
imageIPPImage引用幻灯片的图像IPPImage

返回值

创建缩放对象IZoomFrame

例外

例外(健康)状况
ArgumentException引用的幻灯片不属于当前演示文稿。

例子

此示例演示在集合的指定索引处创建和插入缩放对象 (假设“Presentation.pptx”演示文稿中至少有两张幻灯片):

[C#]
using (Presentation pres = new Presentation("Presentation.pptx"))
{
    IPPImage image = pres.Images.AddImage(Image.FromFile("image.png"));
    IZoomFrame zoomFrame = pres.Slides[0].Shapes.InsertZoomFrame(2, 150, 20, 50, 50, pres.Slides[1], image);
}

也可以看看