Traces

IInk.Traces property

Gets all traces containing in the IInk element IInkTrace. Read-only.

public IInkTrace[] Traces { get; }

Examples

Example:

[C#]
using (Presentation pres = new Presentation("pres.pptx"))
{
    IInk ink = (IInk)pres.Slides[0].Shapes[0];
    IInkTrace[] traces = ink.Traces;
}

See Also