Enum GeometryRelation
Describes how one geometry object is spatially related to another geometry object.
public enum GeometryRelation
Fields
Contains = 3
The instance geometry entirely contains the passed-in geometry.
Disjoint = 1
The two geometries do not intersect at all.
IsContained = 2
The instance geometry is entirely contained by the passed-in geometry.
Overlap = 4
The two geometries overlap but neither completely contains the other.
Unknown = 0
The relationship between the two geometries cannot be determined. This value is never returned by any D2D method.