TargetSection
SectionZoomFrame.TargetSection property
Gets or sets the section object that the Section Zoom object links to. Read/write ISection
.
public ISection TargetSection { get; set; }
Examples
Next example demonstrates changing target section and creates 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
- interface ISection
- class SectionZoomFrame
- namespace Aspose.Slides
- assembly Aspose.Slides