12 references to BorderingElementCategory
PresentationFramework (12)
src\Framework\System\Windows\Documents\TextPointerBase.cs (12)
325
BorderingElementCategory
category = GetBorderingElementCategory(navigator, LogicalDirection.Forward);
328
if (category ==
BorderingElementCategory
.MergeableScopingInline)
334
while (GetBorderingElementCategory(navigator, LogicalDirection.Forward) ==
BorderingElementCategory
.MergeableScopingInline);
1476
BorderingElementCategory
elementType = GetBorderingElementCategory(position, direction);
1478
if (elementType ==
BorderingElementCategory
.MergeableScopingInline)
1486
while ((elementType = GetBorderingElementCategory(navigator, direction)) ==
BorderingElementCategory
.MergeableScopingInline);
1489
return (elementType ==
BorderingElementCategory
.NonMergeableScopingInline);
1494
private static
BorderingElementCategory
GetBorderingElementCategory(ITextPointer position, LogicalDirection direction)
1497
BorderingElementCategory
category;
1502
category =
BorderingElementCategory
.NotScopingInline;
1506
category =
BorderingElementCategory
.MergeableScopingInline;
1510
category =
BorderingElementCategory
.NonMergeableScopingInline;