Run..::.Text Property
This page is specific to:.NET Framework Version:3.03.5Silverlight 34.0
.NET Framework Class Library
Run..::.Text Property

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Gets or sets the unformatted text contents of this text Run.

Namespace:  System.Windows.Documents
Assembly:  PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
Syntax

'Usage

Dim instance As Run
Dim value As String

value = instance.Text

instance.Text = value

'Declaration

Public Property Text As String
    Get
    Set
<object>
  <string .../>
</object>

Property Value

Type: System..::.String
A string that specifies the unformatted text contents of this text Run. The default is Empty.
Remarks

Starting in the .NET Framework 4 Beta 2, the Text property of the Run object is a dependency property, which means that you can bind the Text property to a data source. The Text property fully supports one-way binding in FlowDocumentReader and other controls that display read-only text. For more information about data binding, see Data Binding Overview.

NoteNote

Binding text to a Run object contained within RichTextBox is not supported. Editing operations within the RichTextBox may cause the binding to be cleared.

Examples

The following example shows how to set the Text attribute of a Run element directly and by using binding.

<StackPanel>
    <StackPanel.Resources>
        <TextBox x:Key="DataStore" Text="This is an example of text flow using bound run" />
    </StackPanel.Resources>

    <FlowDocumentReader>
        <FlowDocument>
            <Paragraph>
                <Run Text="This is an example of Run" />
            </Paragraph>

            <Paragraph>
                <Run Text="{Binding Source={StaticResource DataStore}, Path=Text}" />
            </Paragraph>
        </FlowDocument>
    </FlowDocumentReader>
</StackPanel>
Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 4, 3.5, 3.0

.NET Framework Client Profile

Supported in: 4
See Also

Reference

Other Resources

© 2009 Microsoft Corporation. All rights reserved.   Terms of Use | Trademarks | Privacy Statement
Page view tracker
Rate the Lightweight library
x
Lightweight builds on ScriptFree (loband) by adding features you've requested: a SearchBox and default code language selection.
Do you like the SearchBox?
Do you like the tabbed code blocks?
How useful is this topic?
Tell us more.
Thanks
x
You're helping to improve MSDN Online.
Feedback
Switch View
Classic
Lightweight Beta
ScriptFree
Switch View