Points
IInkTrace.Points 属性
获取 IInkLine PointF 的点,只读。
public PointF[] Points { get; }
示例
示例:
[C#]
using (Presentation pres = new Presentation("pres.pptx"))
{
IInk ink = (IInk)pres.Slides[0].Shapes[0];
IInkTrace[] traces = ink.Traces;
PointF[] points = traces[0].Points;
}
参见
- 接口 IInkTrace
- 命名空间 Aspose.Slides.Ink
- 程序集 Aspose.Slides