AddSummaryZoomSection
ISummaryZoomSectionCollection.AddSummaryZoomSection method
Erstellt ein neues Zusammenfassungs-Zoom-Abschnittsobjekt und fügt es der Sammlung hinzu
public ISummaryZoomSection AddSummaryZoomSection(ISection section)
Parameter | Typ | Beschreibung |
---|---|---|
section | ISection | Abschnitt für ein neues Zusammenfassungs-Zoom-AbschnittselementISection |
Rückgabewert
HinzugefügtISummaryZoomFrame
Element
Bemerkungen
Wenn ein Element für diesen Abschnitt bereits in der Sammlung vorhanden ist, wird das vorhandene Element zurückgegeben.
Beispiele
Das Beispiel zeigt das Abrufen des Elements Summary Zoom Section nach Index:
[C#]
using (Presentation pres = new Presentation("pres.pptx"))
{
ISummaryZoomFrame zoomFrame = (ISummaryZoomFrame) pres.Slides[1].Shapes[0];
ISummaryZoomSectionCollection collection = zoomFrame.SummaryZoomCollection;
ISummaryZoomSection newZoomSection = collection.AddSummaryZoomSection(pres.Sections[3]);
}
Siehe auch
- interface ISummaryZoomSection
- interface ISection
- interface ISummaryZoomSectionCollection
- namensraum Aspose.Slides
- Montage Aspose.Slides