AddSectionZoomFrame
内容
[
隐藏
]AddSectionZoomFrame(float, float, float, float, ISection)
将新的 Section Zoom 对象添加到集合的末尾。
public ISectionZoomFrame AddSectionZoomFrame(float x, float y, float width, float height,
ISection section)
范围 | 类型 | 描述 |
---|---|---|
x | Single | 新的 X 坐标部分缩放框架Single。 |
y | Single | 新截面缩放框的 Y 坐标Single。 |
width | Single | 新截面缩放框的宽度Single。 |
height | Single | 新截面缩放框的高度Single。 |
section | ISection | Section 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]);
}
也可以看看
- interface ISectionZoomFrame
- interface ISection
- class ShapeCollection
- 命名空间 Aspose.Slides
- 部件 Aspose.Slides
AddSectionZoomFrame(float, float, float, float, ISection, IPPImage)
将新的 Section Zoom 对象添加到带有预定义图像的集合的末尾。
public ISectionZoomFrame AddSectionZoomFrame(float x, float y, float width, float height,
ISection section, IPPImage image)
范围 | 类型 | 描述 |
---|---|---|
x | Single | 新的 X 坐标部分缩放框架Single。 |
y | Single | 新截面缩放框的 Y 坐标Single。 |
width | Single | 新截面缩放框的宽度Single。 |
height | Single | 新截面缩放框的高度Single。 |
section | ISection | Section Zoom frameISection 引用的section对象。 |
image | IPPImage | 引用幻灯片的图像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);
}
也可以看看
- interface ISectionZoomFrame
- interface ISection
- interface IPPImage
- class ShapeCollection
- 命名空间 Aspose.Slides
- 部件 Aspose.Slides