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 = 7Add text to path for clipping.
Fill = 0Fill text.
FillAndAddToPath = 4Fill text and add to path for clipping.
FillAndStroke = 2Fill, then stroke text.
FillStrokeAndAddToPath = 6Fill, then stroke text and add to path for clipping.
NeitherFillNorStroke = 3Neither fill nor stroke text (draw invisible text).
Stroke = 1Stroke text.
StrokeAndAddToPath = 5Stroke text and add to path for clipping.