12 references to BorderingElementCategory
PresentationFramework (12)
System\Windows\Documents\TextPointerBase.cs (12)
323BorderingElementCategory category = GetBorderingElementCategory(navigator, LogicalDirection.Forward); 326if (category == BorderingElementCategory.MergeableScopingInline) 332while (GetBorderingElementCategory(navigator, LogicalDirection.Forward) == BorderingElementCategory.MergeableScopingInline); 1474BorderingElementCategory elementType = GetBorderingElementCategory(position, direction); 1476if (elementType == BorderingElementCategory.MergeableScopingInline) 1484while ((elementType = GetBorderingElementCategory(navigator, direction)) == BorderingElementCategory.MergeableScopingInline); 1487return (elementType == BorderingElementCategory.NonMergeableScopingInline); 1492private static BorderingElementCategory GetBorderingElementCategory(ITextPointer position, LogicalDirection direction) 1495BorderingElementCategory category; 1500category = BorderingElementCategory.NotScopingInline; 1504category = BorderingElementCategory.MergeableScopingInline; 1508category = BorderingElementCategory.NonMergeableScopingInline;