TargetSection
Propiedad SectionZoomFrame.TargetSection
Obtiene o establece el objeto de sección al que está vinculado el objeto Section Zoom. Lectura/escritura ISection
.
public ISection TargetSection { get; set; }
Ejemplos
El siguiente ejemplo demuestra cómo cambiar la sección objetivo y crea una nueva imagen para el objeto de zoom de sección:
[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];
}
Véase También
- interfaz ISection
- clase SectionZoomFrame
- espacio de nombres Aspose.Slides
- ensamblado Aspose.Slides