2 implementations of Select
PresentationFramework (2)
System\Windows\Documents\TextRange.cs (1)
143void ITextRange.Select(ITextPointer position1, ITextPointer position2)
System\windows\Documents\TextSelection.cs (1)
88void ITextRange.Select(ITextPointer anchorPosition, ITextPointer movingPosition)
35 references to Select
PresentationFramework (35)
MS\Internal\Documents\DocumentGrid.cs (1)
1283textRange.Select(textRange.Start, textRange.Start); //clear selection
MS\Internal\Documents\DocumentViewerHelper.cs (1)
232textSelection.Select(findResult.Start, findResult.End);
System\Windows\Controls\PasswordBox.cs (2)
131Selection.Select(TextContainer.Start, TextContainer.End); 1095Selection.Select(selectionStart, selectionEnd);
System\Windows\Controls\TextAdaptor.cs (1)
207_textContainer.TextSelection.Select(start, end);
System\Windows\Documents\ImmComposition.cs (2)
1150_editor.Selection.Select(caretPosition, caretPosition); 1552_editor.Selection.Select(start, end);
System\windows\Documents\TextEditorCopyPaste.cs (1)
1001This.Selection.Select(start, end);
System\windows\Documents\TextEditorSelection.cs (1)
172This.Selection.Select(This.TextContainer.Start, This.TextContainer.End);
System\windows\Documents\TextEditorSpelling.cs (2)
153This.Selection.Select(spellingError.Start, spellingError.End); 171This.Selection.Select(caretPosition, caretPosition);
System\windows\Documents\TextEditorTyping.cs (8)
693This.Selection.Select(This.Selection.End, backspacePosition); 948This.Selection.Select(textRange.Start, textRange.End); 1008This.Selection.Select(textRange.Start, textRange.End); 1013This.Selection.Select(textRange.Start, textRange.End); 1140This.Selection.Select(newEnd, newEnd); 1204This.Selection.Select(newEnd, newEnd); 1447This.Selection.Select(cell.ContentStart, cell.ContentEnd); 1499This.Selection.Select(cell.ContentStart, cell.ContentEnd);
System\Windows\Documents\TextParentUndoUnit.cs (1)
127_selection.Select(anchorPosition, movingPosition);
System\Windows\Documents\TextRange.cs (1)
685((ITextRange)this).Select(position1, position2);
System\Windows\Documents\TextRangeBase.cs (5)
265thisRange.Select(cell.ContentStart, cell.ContentEnd); 269thisRange.Select(thisRange.Start, thisRange.Start); 309thisRange.Select(thisRange.Start, newEnd); 1340thisRange.Select(thisRange.Start, thisRange.Start); 1370thisRange.Select(insertionPosition, insertionPosition);
System\Windows\Documents\TextRangeEditLists.cs (1)
273((ITextRange)range).Select(insertionPosition, insertionPosition);
System\windows\Documents\TextSelection.cs (1)
1973thisSelection.Select(cursorPosition, movingPosition);
System\Windows\Documents\TextStore.cs (7)
382this.TextSelection.Select(end, start); 386this.TextSelection.Select(start, end); 756this.TextSelection.Select(start, end); 1527TextSelection.Select(TextSelection.End, TextSelection.End); 2018this.TextSelection.Select(range.Start, range.End); 3977this.TextSelection.Select(anchor, moving); 3998this.TextSelection.Select(anchor, moving);