ShowBackground
ZoomObject.ShowBackground 属性
获取或设置一个值,该值指定缩放是否将使用目标幻灯片的背景。可读/可写布尔值。默认值:true
public bool ShowBackground { get; set; }
示例
该示例演示了如何移除Zoom对象图像的背景:
[C#]
using (Presentation pres = new Presentation())
{
IZoomFrame zoomFrame = pres.Slides[0].Shapes.AddZoomFrame(150, 20, 50, 50, pres.Slides[1]);
zoomFrame.ShowBackground = false;
}
另请参阅
- class ZoomObject
- namespace Aspose.Slides
- assembly Aspose.Slides