Points

InkTrace.Points property

Gets points for the IInkLine PointF Read-only.

public PointF[] Points { get; }

Examples

Example:

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

See Also