Ink
Inheritance: java.lang.Object, com.aspose.slides.Shape, com.aspose.slides.GraphicalObject
All Implemented Interfaces: com.aspose.slides.IInk
public class Ink extends GraphicalObject implements IInk
Represents an ink object on a slide.
Methods
Method | Description |
---|---|
getTraces() | Gets all traces containing in the IInk element IInkTrace. |
getTraces()
public final IInkTrace[] getTraces()
Gets all traces containing in the IInk element IInkTrace. 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(); } finally { if (pres != null) pres.dispose(); }
Returns: com.aspose.slides.IInkTrace[]