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); 1471BorderingElementCategory elementType = GetBorderingElementCategory(position, direction); 1473if (elementType == BorderingElementCategory.MergeableScopingInline) 1481while ((elementType = GetBorderingElementCategory(navigator, direction)) == BorderingElementCategory.MergeableScopingInline); 1484return (elementType == BorderingElementCategory.NonMergeableScopingInline); 1489private static BorderingElementCategory GetBorderingElementCategory(ITextPointer position, LogicalDirection direction) 1492BorderingElementCategory category; 1497category = BorderingElementCategory.NotScopingInline; 1501category = BorderingElementCategory.MergeableScopingInline; 1505category = BorderingElementCategory.NonMergeableScopingInline;