FUIFilterGroup

open class FUIFilterGroup

A FUIFilterGroup represents a group of related FUIFilterItem objects.

  • The default constructor.

    Declaration

    Swift

    public init()
  • The FUIFilterItem objects in this group.

    Declaration

    Swift

    public var items: [FUIFilterItem]
  • This property indicates if the FUIFilterItem objects is mutually exclusive. i.e., only one item in this group could be selected at one time. If an item in this group is selected, the other selected item will be deselected. The default is false, means multiple items could be selected at the same time.

    Declaration

    Swift

    public var isMutuallyExclusive: Bool
  • This property indicates if it is allowed to not select any item in this group.

    Declaration

    Swift

    public var allowsEmptySelection: Bool