GetSummarySection
ISummaryZoomSectionCollection.GetSummarySection method
Gibt zusammenfassendes Zoom-Abschnittselement für den angegebenen Abschnitt zurück.
public ISummaryZoomSection GetSummarySection(ISection section)
Parameter | Typ | Beschreibung |
---|---|---|
section | ISection | Abschnitt zu findenISection |
Rückgabewert
ISummaryZoomSection
oder null, wenn die Sammlung kein Element für den Abschnitt enthält.
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 selectedObject = collection.GetSummarySection(pres.Sections[2]);
}
Siehe auch
- interface ISummaryZoomSection
- interface ISection
- interface ISummaryZoomSectionCollection
- namensraum Aspose.Slides
- Montage Aspose.Slides