Enum PdfTextRenderingMode
- Namespace
- BitMiracle.Docotic.Pdf
- Assembly
- BitMiracle.Docotic.Pdf.dll
Specifies whether drawing text on a PdfCanvas causes glyph outlines to be stroked, filled, used as a clipping boundary, or some combination of the three.
public enum PdfTextRenderingMode
Fields
AddToPath = 7
Add text to path for clipping.
Fill = 0
Fill text.
FillAndAddToPath = 4
Fill text and add to path for clipping.
FillAndStroke = 2
Fill, then stroke text.
FillStrokeAndAddToPath = 6
Fill, then stroke text and add to path for clipping.
NeitherFillNorStroke = 3
Neither fill nor stroke text (draw invisible text).
Stroke = 1
Stroke text.
StrokeAndAddToPath = 5
Stroke text and add to path for clipping.