2 implementations of IsAtCaretUnitBoundary
PresentationFramework (2)
src\Framework\MS\Internal\Documents\TextBoxView.cs (1)
819bool ITextView.IsAtCaretUnitBoundary(ITextPointer position)
src\Framework\MS\Internal\Documents\TextViewBase.cs (1)
517bool ITextView.IsAtCaretUnitBoundary(ITextPointer position)
15 references to IsAtCaretUnitBoundary
PresentationFramework (15)
src\Framework\MS\Internal\Documents\DocumentPageTextView.cs (2)
241/// <see cref="ITextView.IsAtCaretUnitBoundary"/> 254return _pageTextView.IsAtCaretUnitBoundary(position);
src\Framework\MS\Internal\Documents\MultiPageTextView.cs (1)
217/// <see cref="ITextView.IsAtCaretUnitBoundary"/>
src\Framework\MS\Internal\Documents\TextBoxView.cs (1)
817/// <see cref="ITextView.IsAtCaretUnitBoundary"/>
src\Framework\MS\Internal\Documents\TextDocumentView.cs (1)
285/// <see cref="ITextView.IsAtCaretUnitBoundary"/>
src\Framework\MS\Internal\Documents\TextParagraphView.cs (1)
211/// <see cref="ITextView.IsAtCaretUnitBoundary"/>
src\Framework\MS\Internal\Documents\TextViewBase.cs (2)
87/// <see cref="ITextView.IsAtCaretUnitBoundary"/> 515/// <see cref="ITextView.IsAtCaretUnitBoundary"/>
src\Framework\System\Windows\Documents\DocumentSequenceTextPointer.cs (2)
369bool isAtCaretUnitBoundary = textView.IsAtCaretUnitBoundary(this); 380isAtCaretUnitBoundary = textView.IsAtCaretUnitBoundary(positionForwardGravity);
src\Framework\System\Windows\Documents\DocumentSequenceTextView.cs (1)
277return this.ChildTextView.IsAtCaretUnitBoundary(ftp.ChildPointer);
src\Framework\System\Windows\Documents\FixedTextPointer.cs (2)
592bool isAtCaretUnitBoundary = textView.IsAtCaretUnitBoundary(this); 603isAtCaretUnitBoundary = textView.IsAtCaretUnitBoundary(positionForwardGravity);
src\Framework\System\Windows\Documents\TextContainer.cs (2)
1610_rootNode.CaretUnitBoundaryCache = _textview.IsAtCaretUnitBoundary(position); 1621_rootNode.CaretUnitBoundaryCache = _textview.IsAtCaretUnitBoundary(positionForwardGravity);