TargetSection
Propriété SectionZoomFrame.TargetSection
Obtient ou définit l’objet section auquel l’objet Section Zoom est lié. Lecture/écriture ISection
.
public ISection TargetSection { get; set; }
Exemples
L’exemple suivant démontre le changement de la section cible et crée une nouvelle image pour l’objet de zoom de section :
[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];
}
Voir Aussi
- interface ISection
- class SectionZoomFrame
- namespace Aspose.Slides
- assembly Aspose.Slides