12 references to BorderingElementCategory
PresentationFramework (12)
System\Windows\Documents\TextPointerBase.cs (12)
320BorderingElementCategory category = GetBorderingElementCategory(navigator, LogicalDirection.Forward); 323if (category == BorderingElementCategory.MergeableScopingInline) 329while (GetBorderingElementCategory(navigator, LogicalDirection.Forward) == BorderingElementCategory.MergeableScopingInline); 1468BorderingElementCategory elementType = GetBorderingElementCategory(position, direction); 1470if (elementType == BorderingElementCategory.MergeableScopingInline) 1478while ((elementType = GetBorderingElementCategory(navigator, direction)) == BorderingElementCategory.MergeableScopingInline); 1481return (elementType == BorderingElementCategory.NonMergeableScopingInline); 1486private static BorderingElementCategory GetBorderingElementCategory(ITextPointer position, LogicalDirection direction) 1489BorderingElementCategory category; 1494category = BorderingElementCategory.NotScopingInline; 1498category = BorderingElementCategory.MergeableScopingInline; 1502category = BorderingElementCategory.NonMergeableScopingInline;