Enum PdfPathDrawMode
Specifies the drawing mode for a path in a PDF document.
[Flags]
public enum PdfPathDrawMode
Fields
Fill = 1
FillStroke = Fill | Stroke
None = 0
Stroke = 2
Remarks
This enumeration defines the options for rendering a path in a PDF, including filling, stroking, or both. It supports bitwise combination of its values due to the FlagsAttribute.