New to Telerik Document ProcessingStart a free 30-day trial

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:

C#
public enum RenderingMode

Fields

Clip only – adds glyph outlines to the clipping path without painting.

C#
AddToClippingPath = 7

Fill only – paints the glyph interiors with the current non-stroking color.

C#
Fill = 0

Fill and clip – fills glyphs and adds their shape to the current clipping path.

C#
FillAndAddToClippingPath = 4

Fill then stroke – fills interiors and then outlines them for combined effect.

C#
FillAndStroke = 2

Fill, stroke, and clip – fills, outlines, then adds the resulting glyph area to the clipping path.

C#
FillStrokeAndAddToClippingPath = 6

Invisible – neither fills nor strokes glyphs (can still affect text positioning).

C#
None = 3

Stroke only – draws glyph outlines using the current stroking settings.

C#
Stroke = 1

Stroke and clip – strokes outlines and adds the outline path to the clipping path.

C#
StrokeAndAddToClippingPath = 5