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: 20.0.0.0 (20.0.0.377)

Syntax

C#
public enum SetComparisonResult
Visual Basic
Public Enumeration SetComparisonResult
Visual C++
public enum class SetComparisonResult

Members

Member nameDescription
LeftEmptyThe left set is empty and the right set is not.
RightEmptyThe right set is empty and the left set is not.
BothEmptyBoth sets are empty.
DisjointBoth sets are not empty and don't overlap.
OverlapThe overlap of two sets is not empty and strict subset of both.
SubsetBoth sets are not empty and the left set is strict subset of the right.
SupersetBoth sets are not empty and the left set is strict superset of the right.
EqualTwo nonempty sets are equal.

See Also