TargetSection

ISectionZoomFrame.TargetSection property

获取或设置截面缩放对象链接到的截面对象。 读/写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];
}

也可以看看