RemoveSummaryZoomSection
ISummaryZoomSectionCollection.RemoveSummaryZoomSection method
Entfernen Sie das Objekt Summary Zoom Section aus der Sammlung.
public void RemoveSummaryZoomSection(ISection section)
Parameter | Typ | Beschreibung |
---|---|---|
section | ISection | Abschnitt, für den das Element Summary Zoom Section entfernt werden sollISection . |
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;
collection.RemoveSummaryZoomSection(pres.Sections[1]);
}
Siehe auch
- interface ISection
- interface ISummaryZoomSectionCollection
- namensraum Aspose.Slides
- Montage Aspose.Slides