TextBlock.Text プロパティ

定義

TextBlock のテキスト コンテンツを取得または設定します。

public:
 property System::String ^ Text { System::String ^ get(); void set(System::String ^ value); };
[System.Windows.Localizability(System.Windows.LocalizationCategory.Text)]
public string Text { get; set; }
[<System.Windows.Localizability(System.Windows.LocalizationCategory.Text)>]
member this.Text : string with get, set
Public Property Text As String

プロパティ値

この TextBlock のテキストの内容。 テキスト以外のコンテンツはすべて取り除かれ、TextBlock コンテンツはプレーン テキスト表現になります。 既定値は、Empty です。

属性

次の例は、 要素の 属性を Text 設定する方法を TextBlock 示しています。

<TextBlock Text="The text contents of this TextBlock element."/>

または、テキストランの内容を要素タグに TextBlock 含めることができます。

次の例では、Text プロパティをプログラムで設定する方法を示しています。

TextBlock textBlock = new TextBlock();
textBlock.Text = "The text contents of this TextBlock.";
Dim textBlock As New TextBlock()
textBlock.Text = "The text contents of this TextBlock."

注釈

でプレーン テキストを表示する場合は、このプロパティを TextBlock使用します。 テキストの書式を設定する必要がある場合は、 プロパティにオブジェクトをInlines追加Inlineします。

依存プロパティ情報

識別子フィールド TextProperty
に設定されたメタデータ プロパティ true AffectsMeasure, AffectsRender

適用対象