7 writes to Text
PresentationFramework (7)
System\Windows\Controls\Primitives\TextBoxBase.cs (1)
109Text = textData // Note that in RichTextBox this assignment will convert NewLines into Paragraphs
System\Windows\Controls\TextBox.cs (1)
774TextSelectionInternal.Text = value;
System\Windows\Documents\TextRange.cs (1)
1571this.Text = String.Empty;
System\Windows\Documents\TextRangeBase.cs (2)
294range.Text = String.Empty; 1559thisRange.Text = text;
System\Windows\Documents\TextRangeSerialization.cs (2)
154range.Text = String.Empty; 1286range.Text = fragmentText;
3 references to Text
PresentationFramework (3)
System\Windows\Controls\TextBox.cs (1)
768return TextSelectionInternal.Text;
System\Windows\Documents\TextStore.cs (2)
1257string unmergedText = range.Text; 1286Invariant.Assert(range.Text == unmergedText);