12 references to BorderingElementCategory
PresentationFramework (12)
src\Framework\System\Windows\Documents\TextPointerBase.cs (12)
325BorderingElementCategory category = GetBorderingElementCategory(navigator, LogicalDirection.Forward); 328if (category == BorderingElementCategory.MergeableScopingInline) 334while (GetBorderingElementCategory(navigator, LogicalDirection.Forward) == BorderingElementCategory.MergeableScopingInline); 1476BorderingElementCategory elementType = GetBorderingElementCategory(position, direction); 1478if (elementType == BorderingElementCategory.MergeableScopingInline) 1486while ((elementType = GetBorderingElementCategory(navigator, direction)) == BorderingElementCategory.MergeableScopingInline); 1489return (elementType == BorderingElementCategory.NonMergeableScopingInline); 1494private static BorderingElementCategory GetBorderingElementCategory(ITextPointer position, LogicalDirection direction) 1497BorderingElementCategory category; 1502category = BorderingElementCategory.NotScopingInline; 1506category = BorderingElementCategory.MergeableScopingInline; 1510category = BorderingElementCategory.NonMergeableScopingInline;