FUISliderContentView

The content view of a FUISliderCollectionViewCell.

  • Undocumented

    Declaration

    Swift

    public var valueTextField: FUITextField { get }
  • Undocumented

    Declaration

    Swift

    public private(set) var slider: UISlider { get }
  • The name of the title.

    Declaration

    Swift

    public var keyName: String? { get set }
  • Declaration

    Swift

    public typealias ValueType = Float
  • Declaration

    Swift

    open var value: Float { get set }
  • Implementation of change handler. It is invoked on changes to the value property.

    Declaration

    Swift

    open var onChangeHandler: ((Float) -> Void)?
  • The maximum value of the slider.

    Declaration

    Swift

    open var maximumValue: Float { get set }
  • The minimum value of the slider.

    Declaration

    Swift

    open var minimumValue: Float { get set }
  • The unit of measure for value. Default value is UnitLength.miles.

    Declaration

    Swift

    open var unit: Unit { get set }
  • Indicate whether the user can change the value for slider. It is set to true by default.

    Declaration

    Swift

    open var isEditable: Bool { get set }
  • Indicate whether the slider is enabled. isEnabled and isEditable are in sync.

    Declaration

    Swift

    override public var isEnabled: Bool { get set }
  • A Boolean value indicating whether changes in the slider’s value generate continuous update events.

    Declaration

    Swift

    open var isContinuous: Bool { get set }