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

См. также