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
M:CoreGraphics.CGContext.SetDrawingMode*