Enum TextRenderingMode
The text rendering mode determines whether showing text causes glyph outlines to be stroked, filled, used as a clipping boundary, or some combination of the three.
public enum TextRenderingMode
Fields
Fill = 0
Fill text.
FillClip = 4
Fill the text and add to the clipping path.
FillThenStroke = 2
Fill then stroke text.
FillThenStrokeClip = 6
Fill then stroke the text and then add to the clipping path.
Neither = 3
Neither fill nor stroke text thereby causing text to become invisible.
NeitherClip = 7
Neither fill nor stroke but add to the clipping path.
Stroke = 1
Stroke text.
StrokeClip = 5
Stroke the text and add to the clipping path.