1 implementation of Contains
PresentationFramework (1)
src\Framework\System\Windows\Documents\TextRange.cs (1)
123bool ITextRange.Contains(ITextPointer position)
6 references to Contains
PresentationFramework (6)
src\Framework\System\Windows\Controls\TextRangeAdaptor.cs (1)
657if (!textRange.Contains(_end))
src\Framework\System\windows\Documents\TextEditorDragDrop.cs (1)
636bool selectionContainedDropPosition = selection.Contains(dropPosition);
src\Framework\System\Windows\Documents\TextRange.cs (1)
644return ((ITextRange)this).Contains(textPointer);
src\Framework\System\windows\Documents\TextSelection.cs (3)
686if (position != null && thisSelection.Contains(position)) 693if (position != null && thisSelection.Contains(position)) 863Invariant.Assert(thisSelection.Contains(thisSelection.AnchorPosition));