2 implementations of IsAtCaretUnitBoundary
PresentationFramework (2)
MS\Internal\Documents\TextBoxView.cs (1)
813bool ITextView.IsAtCaretUnitBoundary(ITextPointer position)
MS\Internal\Documents\TextViewBase.cs (1)
513bool ITextView.IsAtCaretUnitBoundary(ITextPointer position)
16 references to IsAtCaretUnitBoundary
PresentationFramework (16)
MS\Internal\Documents\DocumentPageTextView.cs (2)
237/// <see cref="ITextView.IsAtCaretUnitBoundary"/> 250return _pageTextView.IsAtCaretUnitBoundary(position);
MS\Internal\Documents\MultiPageTextView.cs (1)
212/// <see cref="ITextView.IsAtCaretUnitBoundary"/>
MS\Internal\Documents\TextBoxView.cs (1)
811/// <see cref="ITextView.IsAtCaretUnitBoundary"/>
MS\Internal\Documents\TextDocumentView.cs (1)
276/// <see cref="ITextView.IsAtCaretUnitBoundary"/>
MS\Internal\Documents\TextParagraphView.cs (1)
186/// <see cref="ITextView.IsAtCaretUnitBoundary"/>
MS\Internal\Documents\TextViewBase.cs (2)
83/// <see cref="ITextView.IsAtCaretUnitBoundary"/> 511/// <see cref="ITextView.IsAtCaretUnitBoundary"/>
System\Windows\Documents\DocumentSequenceTextPointer.cs (2)
359bool isAtCaretUnitBoundary = textView.IsAtCaretUnitBoundary(this); 370isAtCaretUnitBoundary = textView.IsAtCaretUnitBoundary(positionForwardGravity);
System\Windows\Documents\DocumentSequenceTextView.cs (1)
260return this.ChildTextView.IsAtCaretUnitBoundary(ftp.ChildPointer);
System\Windows\Documents\FixedTextPointer.cs (2)
569bool isAtCaretUnitBoundary = textView.IsAtCaretUnitBoundary(this); 580isAtCaretUnitBoundary = textView.IsAtCaretUnitBoundary(positionForwardGravity);
System\Windows\Documents\TextContainer.cs (2)
1590_rootNode.CaretUnitBoundaryCache = _textview.IsAtCaretUnitBoundary(position); 1601_rootNode.CaretUnitBoundaryCache = _textview.IsAtCaretUnitBoundary(positionForwardGravity);
System\Windows\Documents\TextPointer.cs (1)
2696if (!_tree.TextView.IsAtCaretUnitBoundary(this))