TargetSection

ISectionZoomFrame.TargetSection Eigenschaft

Ruft das Abschnittsobjekt ab oder legt es fest, mit dem das Abschnitts-Zoom-Objekt verknüpft ist. Lese-/Schreibzugriff auf ISection.

public ISection TargetSection { get; set; }

Beispiele

Dieses Beispiel zeigt, wie das Zielabschnitt geändert und ein neues Bild für das Abschnitts-Zoom-Objekt erstellt wird:

[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