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