ShowBackground

IZoomObject.ShowBackground property

获取或设置指定缩放是否使用目标幻灯片背景的值。 读/写Boolean。 默认值:true

public bool ShowBackground { get; set; }

例子

该示例演示了删除缩放对象图像的背景:

[C#]
using (Presentation pres = new Presentation())
{
    IZoomFrame zoomFrame = pres.Slides[0].Shapes.AddZoomFrame(150, 20, 50, 50, pres.Slides[1]);
    zoomFrame.ShowBackground = false;
}

也可以看看