12 references to BorderingElementCategory
PresentationFramework (12)
System\Windows\Documents\TextPointerBase.cs (12)
321BorderingElementCategory category = GetBorderingElementCategory(navigator, LogicalDirection.Forward); 324if (category == BorderingElementCategory.MergeableScopingInline) 330while (GetBorderingElementCategory(navigator, LogicalDirection.Forward) == BorderingElementCategory.MergeableScopingInline); 1469BorderingElementCategory elementType = GetBorderingElementCategory(position, direction); 1471if (elementType == BorderingElementCategory.MergeableScopingInline) 1479while ((elementType = GetBorderingElementCategory(navigator, direction)) == BorderingElementCategory.MergeableScopingInline); 1482return (elementType == BorderingElementCategory.NonMergeableScopingInline); 1487private static BorderingElementCategory GetBorderingElementCategory(ITextPointer position, LogicalDirection direction) 1490BorderingElementCategory category; 1495category = BorderingElementCategory.NotScopingInline; 1499category = BorderingElementCategory.MergeableScopingInline; 1503category = BorderingElementCategory.NonMergeableScopingInline;