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)
范围 | 类型 | 描述 |
---|---|---|
index | Int32 | The应插入截面缩放框架的从零开始的索引。 |
x | Single | 新截面缩放框的 X 坐标Single。 |
y | Single | 新截面缩放框的 Y 坐标Single。 |
width | Single | 新截面缩放框的宽度Single。 |
height | Single | 新截面缩放框的高度Single。 |
section | ISection | Section 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]);
}
也可以看看
- interface ISectionZoomFrame
- interface ISection
- interface IShapeCollection
- 命名空间 Aspose.Slides
- 部件 Aspose.Slides
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)
范围 | 类型 | 描述 |
---|---|---|
index | Int32 | The应插入截面缩放框架的从零开始的索引。 |
x | Single | 新截面缩放框的 X 坐标Single。 |
y | Single | 新截面缩放框的 Y 坐标Single。 |
width | Single | 新截面缩放框的宽度Single。 |
height | Single | 新截面缩放框的高度Single。 |
section | ISection | Section Zoom frameISection 引用的幻灯片对象。 |
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.InsertSectionZoomFrame(2, 150, 20, 50, 50, pres.Sections[1], image);
}
也可以看看
- interface ISectionZoomFrame
- interface ISection
- interface IPPImage
- interface IShapeCollection
- 命名空间 Aspose.Slides
- 部件 Aspose.Slides