2 implementations of Select
PresentationFramework (2)
System\Windows\Documents\TextRange.cs (1)
133void ITextRange.Select(ITextPointer position1, ITextPointer position2)
System\windows\Documents\TextSelection.cs (1)
84void ITextRange.Select(ITextPointer anchorPosition, ITextPointer movingPosition)
35 references to Select
PresentationFramework (35)
MS\Internal\Documents\DocumentGrid.cs (1)
1275textRange.Select(textRange.Start, textRange.Start); //clear selection
MS\Internal\Documents\DocumentViewerHelper.cs (1)
229textSelection.Select(findResult.Start, findResult.End);
System\Windows\Controls\PasswordBox.cs (2)
116Selection.Select(TextContainer.Start, TextContainer.End); 1071Selection.Select(selectionStart, selectionEnd);
System\Windows\Controls\TextAdaptor.cs (1)
204_textContainer.TextSelection?.Select(start, end);
System\Windows\Documents\ImmComposition.cs (2)
1128_editor.Selection.Select(caretPosition, caretPosition); 1530_editor.Selection.Select(start, end);
System\windows\Documents\TextEditorCopyPaste.cs (1)
989This.Selection.Select(start, end);
System\windows\Documents\TextEditorSelection.cs (1)
156This.Selection.Select(This.TextContainer.Start, This.TextContainer.End);
System\windows\Documents\TextEditorSpelling.cs (2)
151This.Selection.Select(spellingError.Start, spellingError.End); 169This.Selection.Select(caretPosition, caretPosition);
System\windows\Documents\TextEditorTyping.cs (8)
674This.Selection.Select(This.Selection.End, backspacePosition); 929This.Selection.Select(textRange.Start, textRange.End); 989This.Selection.Select(textRange.Start, textRange.End); 994This.Selection.Select(textRange.Start, textRange.End); 1121This.Selection.Select(newEnd, newEnd); 1185This.Selection.Select(newEnd, newEnd); 1425This.Selection.Select(cell.ContentStart, cell.ContentEnd); 1477This.Selection.Select(cell.ContentStart, cell.ContentEnd);
System\Windows\Documents\TextParentUndoUnit.cs (1)
115_selection.Select(anchorPosition, movingPosition);
System\Windows\Documents\TextRange.cs (1)
675((ITextRange)this).Select(position1, position2);
System\Windows\Documents\TextRangeBase.cs (5)
261thisRange.Select(cell.ContentStart, cell.ContentEnd); 265thisRange.Select(thisRange.Start, thisRange.Start); 305thisRange.Select(thisRange.Start, newEnd); 1336thisRange.Select(thisRange.Start, thisRange.Start); 1366thisRange.Select(insertionPosition, insertionPosition);
System\Windows\Documents\TextRangeEditLists.cs (1)
270((ITextRange)range).Select(insertionPosition, insertionPosition);
System\windows\Documents\TextSelection.cs (1)
1954thisSelection.Select(cursorPosition, movingPosition);
System\Windows\Documents\TextStore.cs (7)
370this.TextSelection.Select(end, start); 374this.TextSelection.Select(start, end); 744this.TextSelection.Select(start, end); 1512TextSelection.Select(TextSelection.End, TextSelection.End); 2000this.TextSelection.Select(range.Start, range.End); 3949this.TextSelection.Select(anchor, moving); 3970this.TextSelection.Select(anchor, moving);