CGTextDrawingMode Enum

Definition

Text drawing mode used by Quartz.

public enum CGTextDrawingMode
type CGTextDrawingMode = 
Inheritance
CGTextDrawingMode

Fields

Clip 7

Performs a clip operation using the current clip path without drawing the text.

Fill 0

Perform a Fill operation on the text glyphs.

FillClip 4

Perform a Fill operation on the text glyphs followed by a clip operation using the current clip path.

FillStroke 2

Perform a Fill operation followed by a Stroke operation on the text glyphs.

FillStrokeClip 6

Perform a Stroke operation on the text glyphs followed by a clip operation using the current clip path.

Invisible 3

Does not draw the text, merely updates the text position

Stroke 1

Perform a Stroke operation on the text glyphs.

StrokeClip 5

Remarks

These drawing modes are used with the M:CoreGraphics.CGContext.SetDrawingMode* method and they specify how the glyphs that make up the text should be drawn.

Applies to