Points

InkTrace.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;
}

另请参阅