FUISliderFormView
@MainActor
open class FUISliderFormView : FUIFormCellContentView<UISlider, FUIControlState, FUIMultiLineText>, FUISliderComponent, FUISubtitleMultiLineComponent
The content view of FUISliderCollectionViewCell.
Theming
Supported style classes.
FUISliderFormView
FUISliderFormView_title
FUISliderFormView_subtitle
FUISliderFormView_footnote
{
font-color { -disabled } (Color)
font-style { -disabled } (UIFont.TextStyle)
}
FUISliderFormView_slider
{
thumb-color { -disabled } (Color)
minimum-track-color { -disabled } (Color)
maximum-track-color { -disabled } (Color)
view-alpha-value { -disabled } (Float)
}
-
Indicate whether the user can change the value for slider. This is set to
trueby default.Declaration
Swift
@MainActor open var isEditable: Bool { get set } -
Indicate whether the slider is enabled.
isEnabledandisEditableare in sync.Declaration
Swift
@MainActor open override var isEnabled: Bool { get set } -
The unit of measure for value.
Declaration
Swift
@MainActor open var unit: Unit? { get set } -
The formatter to format the presentation of unit.
Declaration
Swift
@MainActor open var formatter: MeasurementFormatter! { get set }
-
The maximum value of the slider.
Declaration
Swift
@MainActor open var maximumValue: Float { get set } -
The minimum value of the slider.
Declaration
Swift
@MainActor open var minimumValue: Float { get set } -
A Boolean value indicating whether changes in the slider’s value generate continuous update events.
Declaration
Swift
@MainActor open var isContinuous: Bool { get set } -
Declaration
Swift
@objc @MainActor public var sliderView: UISlider { get } -
Declaration
Swift
@MainActor public var value: Float { get set } -
Implementation of the change handler. This is invoked on changes to the
valueproperty.Declaration
Swift
@MainActor public var onChangeHandler: ((Float) -> Void)?
-
Declaration
Swift
@MainActor public let subtitle: FUIMultiLineText
-
Undocumented
Declaration
Swift
@MainActor public let lowerBoundTitle: FUIMultiLineText
-
Undocumented
Declaration
Swift
@MainActor public let upperBoundTitle: FUIMultiLineText