SelectionState
public enum SelectionState : Int
These are the available selection states for Search Criteria.
-
This is a
hard NOT
. This means that this criteria should state that the associated data item NOT be present.Declaration
Swift
case Deselected = -1 -
This means
I don’t care.
It means that the associated item should not be considered in the criteria.Declaration
Swift
case Clear = 0 -
This is a
hard YES
. It means that the associated Criteria item should be present in the Search Criteria.Declaration
Swift
case Selected = 1
View on GitHub
SelectionState Enumeration Reference