IInk
All Implemented Interfaces: com.aspose.slides.IGraphicalObject
public interface IInk extends IGraphicalObject
Represents an ink object on a slide.
Methods
Method | Description |
---|---|
getTraces() | Gets all traces containing in the IInk element IInkTrace. |
getTraces()
public abstract 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[]