AddZoomFrame
内容
[
隐藏
]AddZoomFrame(float, float, float, float, ISlide)
将新的 Zoom 对象添加到集合的末尾。
public IZoomFrame AddZoomFrame(float x, float y, float width, float height, ISlide slide)
范围 | 类型 | 描述 |
---|---|---|
x | Single | 新缩放的X坐标框架Single。 |
y | Single | 新缩放框的 Y 坐标Single。 |
width | Single | 新缩放框的宽度Single。 |
height | Single | 新缩放框的高度Single。 |
slide | ISlide | Zoom frameISlide 引用的幻灯片对象。 |
返回值
创建缩放对象IZoomFrame
。
例外
例外 | (健康)状况 |
---|---|
ArgumentException | 引用的幻灯片不属于当前演示文稿。 |
例子
此示例演示将 Zoom 对象添加到集合的末尾 (假设“Presentation.pptx”演示文稿中至少有两张幻灯片):
[C#]
using (Presentation pres = new Presentation("Presentation.pptx"))
{
IZoomFrame zoomFrame = pres.Slides[0].Shapes.AddZoomFrame(150, 20, 50, 50, pres.Slides[1]);
}
也可以看看
- interface IZoomFrame
- interface ISlide
- class ShapeCollection
- 命名空间 Aspose.Slides
- 部件 Aspose.Slides
AddZoomFrame(float, float, float, float, ISlide, IPPImage)
将新的 Zoom 对象添加到集合的末尾。
public IZoomFrame AddZoomFrame(float x, float y, float width, float height, ISlide slide,
IPPImage image)
范围 | 类型 | 描述 |
---|---|---|
x | Single | 新缩放的X坐标框架Single。 |
y | Single | 新缩放框的 Y 坐标Single。 |
width | Single | 新缩放框的宽度Single。 |
height | Single | 新缩放框的高度Single。 |
slide | ISlide | Zoom frameISlide 引用的幻灯片对象。 |
image | IPPImage | 引用幻灯片的图像IPPImage |
返回值
创建缩放对象IZoomFrame
。
例外
例外 | (健康)状况 |
---|---|
ArgumentException | 引用的幻灯片不属于当前演示文稿。 |
例子
此示例演示将 Zoom 对象添加到集合的末尾 (假设“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.AddZoomFrame(150, 20, 50, 50, pres.Slides[1], image);
}
也可以看看
- interface IZoomFrame
- interface ISlide
- interface IPPImage
- class ShapeCollection
- 命名空间 Aspose.Slides
- 部件 Aspose.Slides