TargetSection

SectionZoomFrame.TargetSection property

Ruft das Abschnittsobjekt ab oder legt es fest, mit dem das Abschnittszoomobjekt verknüpft ist. Lesen/SchreibenISection .

public ISection TargetSection { get; set; }

Beispiele

Das nächste Beispiel zeigt das Ändern des Zielabschnitts und erstellt ein neues Bild für das Abschnitts-Zoom-Objekt:

[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];
}

Siehe auch