27 references to TextSelectionInternal
PresentationFramework (27)
System\Windows\Controls\Primitives\TextBoxBase.cs (7)
152
using (this.
TextSelectionInternal
.DeclareChangeBlock())
154
TextSelectionInternal
.Select(_textContainer.Start, _textContainer.End);
1628
if (this.
TextSelectionInternal
.ChangeBlockLevel > 0)
1983
textBox.
TextSelectionInternal
.UpdateCaretState(CaretScrollMethod.None);
1984
((ITextSelection)textBox.
TextSelectionInternal
).RefreshCaret();
2117
if (textBoxBase.
TextSelectionInternal
!= null)
2119
CaretElement caretElement = textBoxBase.
TextSelectionInternal
.CaretElement;
System\Windows\Controls\RichTextBox.cs (2)
363
if (_document != null && this.
TextSelectionInternal
.ChangeBlockLevel > 0)
556
return (TextSelection)
TextSelectionInternal
;
System\Windows\Controls\TextBox.cs (18)
178
TextSelectionInternal
.Select(newStart, newEnd);
186
using (this.
TextSelectionInternal
.DeclareChangeBlock())
189
TextSelectionInternal
.Select(this.TextContainer.Start, this.TextContainer.Start);
768
return
TextSelectionInternal
.Text;
772
using (this.
TextSelectionInternal
.DeclareChangeBlock())
774
TextSelectionInternal
.Text = value;
798
return
TextSelectionInternal
.Start.GetOffsetToPosition(
TextSelectionInternal
.End);
805
int maxLength =
TextSelectionInternal
.Start.GetOffsetToPosition(TextContainer.End);
810
TextPointer newEnd = new TextPointer(
TextSelectionInternal
.Start, value, LogicalDirection.Forward);
816
TextSelectionInternal
.Select(
TextSelectionInternal
.Start, newEnd);
839
return this.
TextSelectionInternal
.Start.Offset;
846
int selectionLength =
TextSelectionInternal
.Start.GetOffsetToPosition(
TextSelectionInternal
.End);
872
TextSelectionInternal
.Select(newStart, newEnd);
1337
return (TextSelection)
TextSelectionInternal
;
1651
using (
TextSelectionInternal
.DeclareChangeBlock())