2 implementations of IsAtCaretUnitBoundary
PresentationFramework (2)
MS\Internal\Documents\TextBoxView.cs (1)
770bool ITextView.IsAtCaretUnitBoundary(ITextPointer position)
MS\Internal\Documents\TextViewBase.cs (1)
512bool ITextView.IsAtCaretUnitBoundary(ITextPointer position)
16 references to IsAtCaretUnitBoundary
PresentationFramework (16)
MS\Internal\Documents\DocumentPageTextView.cs (2)
236/// <see cref="ITextView.IsAtCaretUnitBoundary"/> 249return _pageTextView.IsAtCaretUnitBoundary(position);
MS\Internal\Documents\MultiPageTextView.cs (1)
211/// <see cref="ITextView.IsAtCaretUnitBoundary"/>
MS\Internal\Documents\TextBoxView.cs (1)
768/// <see cref="ITextView.IsAtCaretUnitBoundary"/>
MS\Internal\Documents\TextDocumentView.cs (1)
274/// <see cref="ITextView.IsAtCaretUnitBoundary"/>
MS\Internal\Documents\TextParagraphView.cs (1)
185/// <see cref="ITextView.IsAtCaretUnitBoundary"/>
MS\Internal\Documents\TextViewBase.cs (2)
82/// <see cref="ITextView.IsAtCaretUnitBoundary"/> 510/// <see cref="ITextView.IsAtCaretUnitBoundary"/>
System\Windows\Documents\DocumentSequenceTextPointer.cs (2)
356bool isAtCaretUnitBoundary = textView.IsAtCaretUnitBoundary(this); 367isAtCaretUnitBoundary = textView.IsAtCaretUnitBoundary(positionForwardGravity);
System\Windows\Documents\DocumentSequenceTextView.cs (1)
259return this.ChildTextView.IsAtCaretUnitBoundary(ftp.ChildPointer);
System\Windows\Documents\FixedTextPointer.cs (2)
566bool isAtCaretUnitBoundary = textView.IsAtCaretUnitBoundary(this); 577isAtCaretUnitBoundary = textView.IsAtCaretUnitBoundary(positionForwardGravity);
System\Windows\Documents\TextContainer.cs (2)
1583_rootNode.CaretUnitBoundaryCache = _textview.IsAtCaretUnitBoundary(position); 1594_rootNode.CaretUnitBoundaryCache = _textview.IsAtCaretUnitBoundary(positionForwardGravity);
System\Windows\Documents\TextPointer.cs (1)
2695if (!_tree.TextView.IsAtCaretUnitBoundary(this))