Enum SelectionUnionType
How the selections in a combined selections should be put together This Enum is used by: selection.combinationType
Namespace: SuperOffice.Data
Assembly: SoCore.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.7.0.0")]
public enum SelectionUnionType : short
Fields
| Name | Description |
|---|---|
| Intersect | 3: Those present in left AND right only |
| SubtractLeftFromRight | 2: All of right, except where it overlaps with left |
| SubtractRightFromLeft | 1: All of left, except where it overlaps with right |
| Union | 5: All, but no duplicates for those present in left and right |
| Unknown | 0: Combination type is unknown/indefined |
| XOR | 4: Those present in left or right, but not both |