TextBlock::Text Property
.NET Framework (current version)
Gets or sets the text contents of a TextBlock.
Assembly: PresentationFramework (in PresentationFramework.dll)
public: [LocalizabilityAttribute(LocalizationCategory::Text)] property String^ Text { String^ get(); void set(String^ value); }
Property Value
Type: System::String^The text contents of this TextBlock. Note that all non-text content is stripped out, resulting in a plain text representation of the TextBlock contents. The default is String::Empty.
The following example shows how to set the Text attribute of a TextBlock element.
<TextBlock Text="The text contents of this TextBlock element."/>
Alternately, the contents of a text run may simply be contained by TextBlock element tags.
The following example shows how to set the Text property programmatically.
.NET Framework
Available since 3.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Available since 3.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Show: