[]
DsPdfJS API / DrawPathOptions
DrawPathOptions =
object
Provides options for drawing and filling a GraphicsPath.
optionalbrushBounds:Bounds|null
The optional bounds for the fill brush.
optionalbrushTransform:Transform|null
The transformation applied to the brush.
optionalfillBrush:Brush|null
A reference to the brush to fill the interior of the path. This property has a priority over the DrawPathOptions.fillColor.
optionalfillColor:Color
The color to fill the interior of the path. This property is ignored if the DrawPathOptions.fillBrush is assigned.
optionallineCap:PenLineCap
The line cap style specifies the shape to be used at the ends of open subpaths (and dashes, if any) when they are stroked. Overrides the existing value if DrawPathOptions.strokePen is specified.
optionallineColor:Color
The color of the path outline. Overrides the existing value if DrawPathOptions.strokePen is specified.
optionallineJoin:PenLineJoin
The line join style specifies the shape to be used at the corners of line segments. Overrides the existing value if DrawPathOptions.strokePen is specified.
optionallineStyle:DashStyle
The style of dashed pen to draw the path outline. Overrides the existing value if DrawPathOptions.strokePen is specified.
optionallineWidth:number
The width of the line pen to draw the path outline, in units used for drawing. Overrides the existing value if DrawPathOptions.strokePen is specified.
optionalstrokePen:Pen|null
A reference to the pen to draw the path outline.