public interface IInkTrace
Represents handwritten line in an Ink object.
| Modifier and Type | Method and Description |
|---|---|
IInkBrush |
getBrush()
Gets Brush for the IInkLine
IInkBrush
Read-only. |
java.awt.geom.Point2D.Float[] |
getPoints()
Gets points for the IInkLine
Point2D.Float
Read-only. |
IInkBrush getBrush()
Gets Brush for the IInkLine IInkBrush
Read-only.
Example:Presentation pres = new Presentation("pres.pptx"); try { IInk ink = (IInk)pres.getSlides().get_Item(0).getShapes().get_Item(0); IInkTrace[] traces = ink.getTraces(); IInkBrush brush = traces[0].getBrush(); } finally { if (pres != null) pres.dispose(); }
java.awt.geom.Point2D.Float[] getPoints()
Gets points for the IInkLine Point2D.Float
Read-only.
Example:Presentation pres = new Presentation("pres.pptx"); try { IInk ink = (IInk)pres.getSlides().get_Item(0).getShapes().get_Item(0); IInkTrace[] traces = ink.getTraces(); Point2D.Float[] points = traces[0].getPoints(); } finally { if (pres != null) pres.dispose(); }
Copyright © 2004-2025 Aspose Pty Ltd. All Rights Reserved.