SetComparisonResult Enumeration

An enumerated type listing all the relationship types between two sets of arbitrary nature.

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 25.0.0.0 (25.0.0.0)
Syntax
public enum SetComparisonResult
Members
Member nameValueDescription
LeftEmpty1The left set is empty and the right set is not.
RightEmpty2The right set is empty and the left set is not.
BothEmpty3Both sets are empty.
Disjoint4Both sets are not empty and don't overlap.
Overlap8The overlap of two sets is not empty and strict subset of both.
Subset16Both sets are not empty and the left set is strict subset of the right.
Superset32Both sets are not empty and the left set is strict superset of the right.
Equal64Two nonempty sets are equal.
See Also