TargetSection

ISectionZoomFrame.TargetSection property

Gets or sets the section object that the Section Zoom object is linked to. Read/write ISection.

public ISection TargetSection { get; set; }

Examples

This example demonstrates changing target section and creates a new image for the section zoom object:

[C#]
using (Presentation pres = new Presentation())
{
  ISectionZoomFrame sectionZoomFrame = pres.Slides[0].Shapes.AddSectionZoomFrame(150, 20, 50, 50, pres.Sections[1]);
  sectionZoomFrame.TargetSection = pres.Sections[2];
}

See Also