FUIRangeSliderContentView

@MainActor
open class FUIRangeSliderContentView : FUIFormCellContentView<FUITextField, FUIControlState, FUIText>, FUITitleComponent, FUISubtitleComponent, UITextFieldDelegate

The content view of the FUIRangeSliderFormCell or FUIRangeSliderCollectionViewCell.

  • The fixed minimum value.

    Declaration

    Swift

    @MainActor
    public var minimumValue: Double { get set }
  • The fixed maximum value.

    Declaration

    Swift

    @MainActor
    public var maximumValue: Double { get set }
  • The minimum value that the user has selected.

    Declaration

    Swift

    @MainActor
    public var lowerValue: Double { get set }
  • The maximum value that the user has selected.

    Declaration

    Swift

    @MainActor
    public var upperValue: Double { get set }
  • Determine whether the slider displays a single thumb or double thumb. The default is true (double thumb).

    Note: If set to false, the lowerTextField will be hidden and lowerValue will then be equal to the minimum value and upperValue will be equal to the user-selected value.

    Declaration

    Swift

    @MainActor
    public var isRangeSelection: Bool { get set }
  • Set the minimum value of the slider as it changes. The default is 1.

    Declaration

    Swift

    @MainActor
    open var interval: Double { get set }
  • If set, value change events are generated any time the value changes due to dragging. The default is true.

    Declaration

    Swift

    @MainActor
    open var isContinuous: Bool { get set }
  • Determine whether the view is editable.

    Declaration

    Swift

    @MainActor
    public var isEditable: Bool { get set }
  • Implementation of the change handle. It is invoked when the slider is slid along the track.

    Declaration

    Swift

    @MainActor
    public var onChangeHandler: ((_ lower: Double, _ upper: Double) -> Void)?
  • Undocumented

    Declaration

    Swift

    @MainActor
    public var keyName: String? { get set }
  • Undocumented

    Declaration

    Swift

    @MainActor
    public let upperTextField: FUITextField
  • Undocumented

    Declaration

    Swift

    @MainActor
    public let lowerTextField: FUITextField
  • Undocumented

    Declaration

    Swift

    @MainActor
    public var slider: FUIRangeSlider
  • Undocumented

    Declaration

    Swift

    @MainActor
    public let sliderContainer: UIView
  • Undocumented

    Declaration

    Swift

    @MainActor
    open override var accessibilityElements: [Any]? { get set }
  • Undocumented

    Declaration

    Swift

    @MainActor
    open override func accessibilityElementCount() -> Int
  • Undocumented

    Declaration

    Swift

    @MainActor
    open override func accessibilityElement(at index: Int) -> Any?
  • Undocumented

    Declaration

    Swift

    @MainActor
    open override func index(ofAccessibilityElement element: Any) -> Int
  • Undocumented

    Declaration

    Swift

    @MainActor
    public func getNSSTrackTintColor(_ view: UIView) -> UIColor?