7 writes to Text
PresentationFramework (7)
System\Windows\Controls\Primitives\TextBoxBase.cs (1)
118range.Text = textData; // Note that in RichTextBox this assignment will convert NewLines into Paragraphs
System\Windows\Controls\TextBox.cs (1)
780TextSelectionInternal.Text = value;
System\Windows\Documents\TextRange.cs (1)
1583this.Text = String.Empty;
System\Windows\Documents\TextRangeBase.cs (2)
298range.Text = String.Empty; 1563thisRange.Text = text;
System\Windows\Documents\TextRangeSerialization.cs (2)
161range.Text = String.Empty; 1293range.Text = fragmentText;
5 references to Text
PresentationFramework (5)
System\Windows\Controls\TextBox.cs (1)
774return TextSelectionInternal.Text;
System\Windows\Documents\TextPointer.cs (1)
707/// <see cref="TextRange.Text"/> property for more sophisticated
System\windows\Documents\TextSelection.cs (1)
284/// <see cref="System.Windows.Documents.TextRange.Text"/>
System\Windows\Documents\TextStore.cs (2)
1272string unmergedText = range.Text; 1301Invariant.Assert(range.Text == unmergedText);