TextBlock.Text Property
Definition
Gets or sets the text contents of a TextBlock.
Equivalent WinUI property: Microsoft.UI.Xaml.Controls.TextBlock.Text.
public:
property Platform::String ^ Text { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring Text();
void Text(winrt::hstring value);
public string Text { get; set; }
var string = textBlock.text;
textBlock.text = string;
Public Property Text As String
<TextBlock Text="string"/>
- or -
<TextBlock>string</TextBlock>
Property Value
A string that specifies the text contents of this TextBlock. The default is an empty string.