AddSectionZoomFrame

AddSectionZoomFrame(float, float, float, float, ISection)

将新的 Section Zoom 对象添加到集合的末尾。

public ISectionZoomFrame AddSectionZoomFrame(float x, float y, float width, float height, 
    ISection section)
范围类型描述
xSingle新的 X 坐标部分缩放框架Single。
ySingle新截面缩放框的 Y 坐标Single。
widthSingle新截面缩放框的宽度Single。
heightSingle新截面缩放框的高度Single。
sectionISectionSection Zoom frameISection引用的section对象。

返回值

创建截面缩放对象ISectionZoomFrame

例外

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

例子

此示例演示了将 Section Zoom 对象添加到集合的末尾 :(假设“Presentation.pptx”演示文稿中至少有两个部分):

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

也可以看看


AddSectionZoomFrame(float, float, float, float, ISection, IPPImage)

将新的 Section Zoom 对象添加到带有预定义图像的集合的末尾。

public ISectionZoomFrame AddSectionZoomFrame(float x, float y, float width, float height, 
    ISection section, IPPImage image)
范围类型描述
xSingle新的 X 坐标部分缩放框架Single。
ySingle新截面缩放框的 Y 坐标Single。
widthSingle新截面缩放框的宽度Single。
heightSingle新截面缩放框的高度Single。
sectionISectionSection Zoom frameISection引用的section对象。
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.AddSectionZoomFrame(150, 20, 50, 50, pres.Sections[1], image);
}

也可以看看