Layout

ISummaryZoomFrame.Layout property

Gets layout of Summary Zoom Sections in the frame. Default value is GridLayout.

public ZoomLayout Layout { get; }

Examples

The example demonstrates getting Summary Zoom Section element by index:

[C#]
using (Presentation pres = new Presentation("pres.pptx"))
{
    ISummaryZoomFrame zoomFrame = pres.Slides[1].Shapes[0] as ISummaryZoomFrame;
    ZoomLayout layout = zoomFrame.Layout;
}

See Also