Interface IOfficeInkTrace
Represents a single ink trace within an Office Ink object, consisting of a brush and a sequence of points.
Namespace: Syncfusion.Office
Assembly: Syncfusion.DocIO.UWP.dll
Syntax
public interface IOfficeInkTrace
Properties
Brush
Gets the brush used to render the ink trace.
Declaration
IOfficeInkBrush Brush { get; }
Property Value
| Type | Description |
|---|---|
| IOfficeInkBrush | An IOfficeInkBrush instance that defines the appearance of the ink stroke, including color, thickness, and style. |
Points
Gets or sets the sequence of points that form the ink trace.
Declaration
PointF[] Points { get; set; }
Property Value
| Type | Description |
|---|---|
| PointF[] | An array of System.Drawing.PointF representing the path of the stroke as drawn by the user. |