[]
Specifies the result of comparing two range locations.
public enum LocationRelation
AdjacentAfter = 11
This instance occurs after, and is adjacent to, the other range.
AdjacentBefore = 8
This instance occurs before, and is adjacent to, the other range.
After = 13
This instance occurs after the other range.
Before = 10
This instance occurs before the other range.
Contains = 4
This instance contains the other range, and both start and end of this instance are outside the other range.
ContainsEnd = 3
This instance contains the other range and both have the same end, but different start locations.
ContainsStart = 2
This instance contains the other range and both have the same start, but different end locations.
Equal = 1
This instance and the other range represent the same range.
Inside = 7
This instance is inside the other range, and both start and end of this instance are inside the other range.
InsideEnd = 6
This instance is inside the other range and both have the same end, but different start locations.
InsideStart = 5
This instance is inside the other range and both have the same start, but different end locations.
OverlapsAfter = 12
This instance starts inside the other range and overlaps its end.
OverlapsBefore = 9
This instance starts before the other range and overlaps its start.
This instance and the other range are in different bodies.