FormattedText.SetTextDecorations 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
SetTextDecorations(TextDecorationCollection)
設定 TextDecorationCollection 物件中整個字元集的 FormattedText。
public:
void SetTextDecorations(System::Windows::TextDecorationCollection ^ textDecorations);
public void SetTextDecorations (System.Windows.TextDecorationCollection textDecorations);
member this.SetTextDecorations : System.Windows.TextDecorationCollection -> unit
Public Sub SetTextDecorations (textDecorations As TextDecorationCollection)
參數
- textDecorations
- TextDecorationCollection
TextDecorationCollection,要套用至文字。
備註
類別 TextDecorationCollection 會指定要套用至文字的文字裝飾類型。 文字裝飾有四種類型:底線、基準、刪除線和超線。 這些會描述為 TextDecorationLocation 在 中的每個專案 TextDecorationCollection 上設定的值。 TextDecorationCollection集合只包含一個裝飾,但 屬性會使用 集合,藉由將多個裝飾套用至相同的文字,以提供更進階的裝飾效果。
下圖顯示相對於文字的文字裝飾位置。
圖文字裝飾類型的範例
這個方法會設定 TextDecorationCollection 整個文字字串的 。 若要設定 TextDecorationCollection 文字字串子集的 ,請使用 SetTextDecorations(TextDecorationCollection, Int32, Int32) 方法。
適用於
SetTextDecorations(TextDecorationCollection, Int32, Int32)
設定 TextDecorationCollection 物件內所指定文字的 FormattedText。
public:
void SetTextDecorations(System::Windows::TextDecorationCollection ^ textDecorations, int startIndex, int count);
public void SetTextDecorations (System.Windows.TextDecorationCollection textDecorations, int startIndex, int count);
member this.SetTextDecorations : System.Windows.TextDecorationCollection * int * int -> unit
Public Sub SetTextDecorations (textDecorations As TextDecorationCollection, startIndex As Integer, count As Integer)
參數
- textDecorations
- TextDecorationCollection
TextDecorationCollection,要套用至文字。
- startIndex
- Int32
要套用文字裝飾之初始字元的起始索引。
- count
- Int32
要套用文字裝飾的字元數目。
備註
類別 TextDecorationCollection 會指定要套用至文字的文字裝飾類型。 文字裝飾有四種類型:底線、基準、刪除線和超線。 這些會描述為 TextDecorationLocation 在 中的每個專案 TextDecorationCollection 上設定的值。 TextDecorationCollection集合只包含一個裝飾,但 屬性會使用 集合,藉由將多個裝飾套用至相同的文字,以提供更進階的裝飾效果。
下圖顯示相對於文字的文字裝飾位置。
圖文字裝飾類型的範例
若要設定 TextDecorationCollection 整個文字字串的 ,請使用 SetTextDecorations(TextDecorationCollection) 方法。