PdfTextRenderingMode Enumeration

Docotic.Pdf library help > BitMiracle.Docotic.Pdf > PdfTextRenderingMode Enumeration
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.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public enum PdfTextRenderingMode
VB
Public Enumeration PdfTextRenderingMode

Members

  Member nameValueDescription
Fill0 Fill text.
Stroke1 Stroke text.
FillAndStroke2 Fill, then stroke text.
NeitherFillNorStroke3 Neither fill nor stroke text (draw invisible text).
FillAndAddToPath4 Fill text and add to path for clipping.
StrokeAndAddToPath5 Stroke text and add to path for clipping.
FillStrokeAndAddToPath6 Fill, then stroke text and add to path for clipping.
AddToPath7 Add text to path for clipping.

See Also