Enum
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:

cs-api-definition
public enum RenderingMode

Fields

AddToClippingPath

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

Declaration

cs-api-definition
AddToClippingPath = 7

Field Value

RenderingMode

Fill

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

Declaration

cs-api-definition
Fill = 0

Field Value

RenderingMode

FillAndAddToClippingPath

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

Declaration

cs-api-definition
FillAndAddToClippingPath = 4

Field Value

RenderingMode

FillAndStroke

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

Declaration

cs-api-definition
FillAndStroke = 2

Field Value

RenderingMode

FillStrokeAndAddToClippingPath

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

Declaration

cs-api-definition
FillStrokeAndAddToClippingPath = 6

Field Value

RenderingMode

None

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

Declaration

cs-api-definition
None = 3

Field Value

RenderingMode

Stroke

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

Declaration

cs-api-definition
Stroke = 1

Field Value

RenderingMode

StrokeAndAddToClippingPath

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

Declaration

cs-api-definition
StrokeAndAddToClippingPath = 5

Field Value

RenderingMode