InsertSectionZoomFrame

InsertSectionZoomFrame(int, float, float, float, float, ISection)

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

public ISectionZoomFrame InsertSectionZoomFrame(int index, float x, float y, float width, 
    float height, ISection section)
范围类型描述
indexInt32The应插入截面缩放框架的从零开始的索引。
xSingle新截面缩放框的 X 坐标Single。
ySingle新截面缩放框的 Y 坐标Single。
widthSingle新截面缩放框的宽度Single。
heightSingle新截面缩放框的高度Single。
sectionISectionSection Zoom frameISection引用的幻灯片对象。

返回值

创建截面缩放对象ISectionZoomFrame

例外

例外(健康)状况
ArgumentException引用的部分不属于当前演示文稿或不包含任何幻灯片。

例子

此示例演示了在集合的指定索引处创建和插入 Section Zoom 对象 (假设“Presentation.pptx”演示文稿中至少有两个部分):

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

也可以看看


InsertSectionZoomFrame(int, float, float, float, float, ISection, IPPImage)

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

public ISectionZoomFrame InsertSectionZoomFrame(int index, float x, float y, float width, 
    float height, ISection section, IPPImage image)
范围类型描述
indexInt32The应插入截面缩放框架的从零开始的索引。
xSingle新截面缩放框的 X 坐标Single。
ySingle新截面缩放框的 Y 坐标Single。
widthSingle新截面缩放框的宽度Single。
heightSingle新截面缩放框的高度Single。
sectionISectionSection Zoom frameISection引用的幻灯片对象。
imageIPPImage引用幻灯片的图像IPPImage

返回值

创建截面缩放对象ISectionZoomFrame

例外

例外(健康)状况
ArgumentException引用的部分不属于当前演示文稿或不包含任何幻灯片。

例子

此示例演示了在集合的指定索引处创建和插入 Section Zoom 对象 (假设“Presentation.pptx”演示文稿中至少有两个部分):

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

也可以看看