7 writes to Text
PresentationFramework (7)
System\Windows\Controls\Primitives\TextBoxBase.cs (1)
110Text = textData // Note that in RichTextBox this assignment will convert NewLines into Paragraphs
System\Windows\Controls\TextBox.cs (1)
775TextSelectionInternal.Text = value;
System\Windows\Documents\TextRange.cs (1)
1572this.Text = String.Empty;
System\Windows\Documents\TextRangeBase.cs (2)
295range.Text = String.Empty; 1560thisRange.Text = text;
System\Windows\Documents\TextRangeSerialization.cs (2)
155range.Text = String.Empty; 1287range.Text = fragmentText;
5 references to Text
PresentationFramework (5)
System\Windows\Controls\TextBox.cs (1)
769return TextSelectionInternal.Text;
System\Windows\Documents\TextPointer.cs (1)
702/// <see cref="TextRange.Text"/> property for more sophisticated
System\windows\Documents\TextSelection.cs (1)
281/// <see cref="System.Windows.Documents.TextRange.Text"/>
System\Windows\Documents\TextStore.cs (2)
1261string unmergedText = range.Text; 1290Invariant.Assert(range.Text == unmergedText);