2 implementations of Select
PresentationFramework (2)
System\Windows\Documents\TextRange.cs (1)
140void 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)
123Selection.Select(TextContainer.Start, TextContainer.End); 1087Selection.Select(selectionStart, selectionEnd);
System\Windows\Controls\TextAdaptor.cs (1)
204_textContainer.TextSelection.Select(start, end);
System\Windows\Documents\ImmComposition.cs (2)
1142_editor.Selection.Select(caretPosition, caretPosition); 1544_editor.Selection.Select(start, end);
System\windows\Documents\TextEditorCopyPaste.cs (1)
988This.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)
684This.Selection.Select(This.Selection.End, backspacePosition); 939This.Selection.Select(textRange.Start, textRange.End); 999This.Selection.Select(textRange.Start, textRange.End); 1004This.Selection.Select(textRange.Start, textRange.End); 1131This.Selection.Select(newEnd, newEnd); 1195This.Selection.Select(newEnd, newEnd); 1438This.Selection.Select(cell.ContentStart, cell.ContentEnd); 1490This.Selection.Select(cell.ContentStart, cell.ContentEnd);
System\Windows\Documents\TextParentUndoUnit.cs (1)
116_selection.Select(anchorPosition, movingPosition);
System\Windows\Documents\TextRange.cs (1)
682((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)
1970thisSelection.Select(cursorPosition, movingPosition);
System\Windows\Documents\TextStore.cs (7)
371this.TextSelection.Select(end, start); 375this.TextSelection.Select(start, end); 745this.TextSelection.Select(start, end); 1516TextSelection.Select(TextSelection.End, TextSelection.End); 2007this.TextSelection.Select(range.Start, range.End); 3957this.TextSelection.Select(anchor, moving); 3978this.TextSelection.Select(anchor, moving);