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