ShowBackground

ZoomObject.ShowBackground property

Gets or sets value that specifies whether the Zoom will use the background of the destination slide. Read/write Boolean. Default value: true

public bool ShowBackground { get; set; }

Examples

the example demonstrates removing the background of an image of a Zoom object:

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

See Also