ReturnToParent

IZoomObject.ReturnToParent property

Gets or sets the navigation behavior in slideshow. Read/write Boolean. Default value: false

public bool ReturnToParent { get; set; }

Remarks

True value of the property specifies return to parent navigation behavior in slideshow.

Examples

Example:

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

See Also