次の方法で共有


FormattedText.SetFontTypeface メソッド

定義

FormattedText オブジェクトのフォント タイプフェイスを設定します。

オーバーロード

SetFontTypeface(Typeface)

FormattedText オブジェクト内の文字列全体のフォント タイプフェイスを設定します。

SetFontTypeface(Typeface, Int32, Int32)

FormattedText オブジェクト内の文字の指定したサブセットのフォント タイプフェイスを設定します。

SetFontTypeface(Typeface)

FormattedText オブジェクト内の文字列全体のフォント タイプフェイスを設定します。

public:
 void SetFontTypeface(System::Windows::Media::Typeface ^ typeface);
public void SetFontTypeface (System.Windows.Media.Typeface typeface);
member this.SetFontTypeface : System.Windows.Media.Typeface -> unit
Public Sub SetFontTypeface (typeface As Typeface)

パラメーター

typeface
Typeface

テキストの書式設定に使用する Typeface

注釈

Typefaceは 、および .FontFamilyFontWeightFontStyleFontStretch Typeface では、複数のコンストラクターがサポートされています。そのうちの 1 つは書体名に基づくコンストラクトで、もう 1 つは FontFamily、 , FontWeight, , FontStyleおよび FontStretch.

このメソッドは、テキスト文字列全体のフォントの書体を設定します。 テキスト文字列のサブセットのフォント タイプフェイスを設定するには、メソッドを SetFontTypeface(Typeface, Int32, Int32) 使用します。

適用対象

SetFontTypeface(Typeface, Int32, Int32)

FormattedText オブジェクト内の文字の指定したサブセットのフォント タイプフェイスを設定します。

public:
 void SetFontTypeface(System::Windows::Media::Typeface ^ typeface, int startIndex, int count);
public void SetFontTypeface (System.Windows.Media.Typeface typeface, int startIndex, int count);
member this.SetFontTypeface : System.Windows.Media.Typeface * int * int -> unit
Public Sub SetFontTypeface (typeface As Typeface, startIndex As Integer, count As Integer)

パラメーター

typeface
Typeface

テキストの書式設定に使用する Typeface

startIndex
Int32

タイプフェイスを適用する最初の文字の開始インデックス。

count
Int32

タイプフェイスを適用する文字の数。

注釈

Typefaceは 、および .FontFamilyFontWeightFontStyleFontStretch Typeface では、複数のコンストラクターがサポートされています。そのうちの 1 つは書体名に基づくコンストラクトで、もう 1 つは FontFamily、 , FontWeight, , FontStyleおよび FontStretch.

テキスト文字列全体のフォント タイプフェイスを設定するには、メソッドを SetFontTypeface(Typeface) 使用します。

適用対象