2 implementations of Select
PresentationFramework (2)
src\Framework\System\Windows\Documents\TextRange.cs (1)
133void ITextRange.Select(ITextPointer position1, ITextPointer position2)
src\Framework\System\windows\Documents\TextSelection.cs (1)
91void ITextRange.Select(ITextPointer anchorPosition, ITextPointer movingPosition)
35 references to Select
PresentationFramework (35)
src\Framework\MS\Internal\Documents\DocumentGrid.cs (1)
1308textRange.Select(textRange.Start, textRange.Start); //clear selection
src\Framework\MS\Internal\Documents\DocumentViewerHelper.cs (1)
247textSelection.Select(findResult.Start, findResult.End);
src\Framework\System\Windows\Controls\PasswordBox.cs (2)
134Selection.Select(TextContainer.Start, TextContainer.End); 1118Selection.Select(selectionStart, selectionEnd);
src\Framework\System\Windows\Controls\TextAdaptor.cs (1)
215_textContainer.TextSelection.Select(start, end);
src\Framework\System\Windows\Documents\ImmComposition.cs (2)
1282_editor.Selection.Select(caretPosition, caretPosition); 1703_editor.Selection.Select(start, end);
src\Framework\System\windows\Documents\TextEditorCopyPaste.cs (1)
1178This.Selection.Select(start, end);
src\Framework\System\windows\Documents\TextEditorSelection.cs (1)
180This.Selection.Select(This.TextContainer.Start, This.TextContainer.End);
src\Framework\System\windows\Documents\TextEditorSpelling.cs (2)
155This.Selection.Select(spellingError.Start, spellingError.End); 173This.Selection.Select(caretPosition, caretPosition);
src\Framework\System\windows\Documents\TextEditorTyping.cs (8)
709This.Selection.Select(This.Selection.End, backspacePosition); 965This.Selection.Select(textRange.Start, textRange.End); 1025This.Selection.Select(textRange.Start, textRange.End); 1030This.Selection.Select(textRange.Start, textRange.End); 1157This.Selection.Select(newEnd, newEnd); 1221This.Selection.Select(newEnd, newEnd); 1464This.Selection.Select(cell.ContentStart, cell.ContentEnd); 1516This.Selection.Select(cell.ContentStart, cell.ContentEnd);
src\Framework\System\Windows\Documents\TextParentUndoUnit.cs (1)
132_selection.Select(anchorPosition, movingPosition);
src\Framework\System\Windows\Documents\TextRange.cs (1)
675((ITextRange)this).Select(position1, position2);
src\Framework\System\Windows\Documents\TextRangeBase.cs (5)
276thisRange.Select(cell.ContentStart, cell.ContentEnd); 280thisRange.Select(thisRange.Start, thisRange.Start); 320thisRange.Select(thisRange.Start, newEnd); 1354thisRange.Select(thisRange.Start, thisRange.Start); 1384thisRange.Select(insertionPosition, insertionPosition);
src\Framework\System\Windows\Documents\TextRangeEditLists.cs (1)
275((ITextRange)range).Select(insertionPosition, insertionPosition);
src\Framework\System\windows\Documents\TextSelection.cs (1)
1981thisSelection.Select(cursorPosition, movingPosition);
src\Framework\System\Windows\Documents\TextStore.cs (7)
275this.TextSelection.Select(end, start); 279this.TextSelection.Select(start, end); 624this.TextSelection.Select(start, end); 1392TextSelection.Select(TextSelection.End, TextSelection.End); 1896this.TextSelection.Select(range.Start, range.End); 3811this.TextSelection.Select(anchor, moving); 3832this.TextSelection.Select(anchor, moving);