共用方式為


CGTextDrawingMode 列舉

定義

使用於文本的文字繪圖模式。

public enum CGTextDrawingMode
type CGTextDrawingMode = 
繼承
CGTextDrawingMode

欄位

Clip 7

使用目前的剪輯路徑執行剪輯作業,而不繪製文字。

Fill 0

在文字字元上執行 Fill 作業。

FillClip 4

使用目前的剪輯路徑,在文字字元後面接著剪輯作業上執行 Fill 作業。

FillStroke 2

在文字字元上執行 Fill 作業,後面接著 Stroke 作業。

FillStrokeClip 6

使用目前的剪輯路徑,在文字字元後面接著剪輯作業上執行 Stroke 作業。

Invisible 3

不繪製文字,只會更新文字位置

Stroke 1

在文字字元上執行 Stroke 作業。

StrokeClip 5

備註

這些繪圖模式會與 M:CoreGraphics.CGCoNtext.SetDrawingMode*方法搭配使用,並指定如何繪製組成文字的字元。

適用於