RenderingMode
Text rendering styles controlling whether glyph interiors, outlines, both, or clipping paths are applied when painting text.
Definition
Namespace:Telerik.Windows.Documents.Fixed.Model.Text
Assembly:Telerik.Windows.Documents.Fixed.dll
Syntax:
public enum RenderingMode
Fields
Clip only – adds glyph outlines to the clipping path without painting.
AddToClippingPath = 7
Fill only – paints the glyph interiors with the current non-stroking color.
Fill = 0
Fill and clip – fills glyphs and adds their shape to the current clipping path.
FillAndAddToClippingPath = 4
Fill then stroke – fills interiors and then outlines them for combined effect.
FillAndStroke = 2
Fill, stroke, and clip – fills, outlines, then adds the resulting glyph area to the clipping path.
FillStrokeAndAddToClippingPath = 6
Invisible – neither fills nor strokes glyphs (can still affect text positioning).
None = 3
Stroke only – draws glyph outlines using the current stroking settings.
Stroke = 1
Stroke and clip – strokes outlines and adds the outline path to the clipping path.
StrokeAndAddToClippingPath = 5