Points

InkTrace.Points-Eigenschaft

Holt Punkte für das IInkLine PointF Nur-lesbar.

public PointF[] Points { get; }  

Beispiele

Beispiel:

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

Siehe auch