7 writes to Text
PresentationFramework (7)
src\Framework\System\Windows\Controls\Primitives\TextBoxBase.cs (1)
129range.Text = textData; // Note that in RichTextBox this assignment will convert NewLines into Paragraphs
src\Framework\System\Windows\Controls\TextBox.cs (1)
809TextSelectionInternal.Text = value;
src\Framework\System\Windows\Documents\TextRange.cs (1)
1580this.Text = String.Empty;
src\Framework\System\Windows\Documents\TextRangeBase.cs (2)
309range.Text = String.Empty; 1591thisRange.Text = text;
src\Framework\System\Windows\Documents\TextRangeSerialization.cs (2)
163range.Text = String.Empty; 1317range.Text = fragmentText;
5 references to Text
PresentationFramework (5)
src\Framework\System\Windows\Controls\TextBox.cs (1)
803return TextSelectionInternal.Text;
src\Framework\System\Windows\Documents\TextPointer.cs (1)
718/// <see cref="TextRange.Text"/> property for more sophisticated
src\Framework\System\windows\Documents\TextSelection.cs (1)
287/// <see cref="System.Windows.Documents.TextRange.Text"/>
src\Framework\System\Windows\Documents\TextStore.cs (2)
1144string unmergedText = range.Text; 1173Invariant.Assert(range.Text == unmergedText);