TargetSection

SectionZoomFrame.TargetSection 属性

获取或设置与节缩放对象链接的节对象。可读/写 ISection

public ISection TargetSection { get; set; }

示例

下一个示例演示如何更改目标节并为节缩放对象创建新图像:

[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];
}

另请参阅