2 implementations of Select
PresentationFramework (2)
System\Windows\Documents\TextRange.cs (1)
134void ITextRange.Select(ITextPointer position1, ITextPointer position2)
System\windows\Documents\TextSelection.cs (1)
85void ITextRange.Select(ITextPointer anchorPosition, ITextPointer movingPosition)
35 references to Select
PresentationFramework (35)
MS\Internal\Documents\DocumentGrid.cs (1)
1276textRange.Select(textRange.Start, textRange.Start); //clear selection
MS\Internal\Documents\DocumentViewerHelper.cs (1)
230textSelection.Select(findResult.Start, findResult.End);
System\Windows\Controls\PasswordBox.cs (2)
117Selection.Select(TextContainer.Start, TextContainer.End); 1072Selection.Select(selectionStart, selectionEnd);
System\Windows\Controls\TextAdaptor.cs (1)
202_textContainer.TextSelection?.Select(start, end);
System\Windows\Documents\ImmComposition.cs (2)
1129_editor.Selection.Select(caretPosition, caretPosition); 1531_editor.Selection.Select(start, end);
System\windows\Documents\TextEditorCopyPaste.cs (1)
990This.Selection.Select(start, end);
System\windows\Documents\TextEditorSelection.cs (1)
157This.Selection.Select(This.TextContainer.Start, This.TextContainer.End);
System\windows\Documents\TextEditorSpelling.cs (2)
152This.Selection.Select(spellingError.Start, spellingError.End); 170This.Selection.Select(caretPosition, caretPosition);
System\windows\Documents\TextEditorTyping.cs (8)
675This.Selection.Select(This.Selection.End, backspacePosition); 930This.Selection.Select(textRange.Start, textRange.End); 990This.Selection.Select(textRange.Start, textRange.End); 995This.Selection.Select(textRange.Start, textRange.End); 1122This.Selection.Select(newEnd, newEnd); 1186This.Selection.Select(newEnd, newEnd); 1426This.Selection.Select(cell.ContentStart, cell.ContentEnd); 1478This.Selection.Select(cell.ContentStart, cell.ContentEnd);
System\Windows\Documents\TextParentUndoUnit.cs (1)
116_selection.Select(anchorPosition, movingPosition);
System\Windows\Documents\TextRange.cs (1)
676((ITextRange)this).Select(position1, position2);
System\Windows\Documents\TextRangeBase.cs (5)
262thisRange.Select(cell.ContentStart, cell.ContentEnd); 266thisRange.Select(thisRange.Start, thisRange.Start); 306thisRange.Select(thisRange.Start, newEnd); 1337thisRange.Select(thisRange.Start, thisRange.Start); 1367thisRange.Select(insertionPosition, insertionPosition);
System\Windows\Documents\TextRangeEditLists.cs (1)
271((ITextRange)range).Select(insertionPosition, insertionPosition);
System\windows\Documents\TextSelection.cs (1)
1955thisSelection.Select(cursorPosition, movingPosition);
System\Windows\Documents\TextStore.cs (7)
371this.TextSelection.Select(end, start); 375this.TextSelection.Select(start, end); 745this.TextSelection.Select(start, end); 1513TextSelection.Select(TextSelection.End, TextSelection.End); 2001this.TextSelection.Select(range.Start, range.End); 3950this.TextSelection.Select(anchor, moving); 3971this.TextSelection.Select(anchor, moving);