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