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

另请参阅