IntRangeSliderView

trait IntRangeSliderView[T <: Txn[T]] extends View[T]
Companion
object
trait View[T]
trait Disposable[T]
class Object
trait Matchable
class Any

Type members

Types

type C = DualRangeSlider

Value members

Abstract methods

def extent(tx: T): Option[IntObj[T]]

Gets the expression associated with the extent of the range slider (if any).

Gets the expression associated with the extent of the range slider (if any).

def extent_=(expr: Option[IntObj[T]])(tx: T): Unit

Sets the expression associated with the extent the range slider. The value None can be used to disable the range slider function (it will be hidden). If the value is Some and an expression was specified for rangeHi, the rangeHi expression will be automatically set to None. That is, extent is mutually exclusive with rangeHi.

Sets the expression associated with the extent the range slider. The value None can be used to disable the range slider function (it will be hidden). If the value is Some and an expression was specified for rangeHi, the rangeHi expression will be automatically set to None. That is, extent is mutually exclusive with rangeHi.

If either of rangeLo and rangeHi / extent is None, the range functionality is hidden.

def rangeHi(tx: T): Option[IntObj[T]]

Gets the expression associated with the upper bound of the range slider (if any).

Gets the expression associated with the upper bound of the range slider (if any).

def rangeHi_=(expr: Option[IntObj[T]])(tx: T): Unit

Sets the expression associated with the upper bound of the range slider. The value None can be used to disable the range slider function (it will be hidden). If the value is Some and an expression was specified for extent, the extent expression will be automatically set to None. That is, rangeHi is mutually exclusive with extent.

Sets the expression associated with the upper bound of the range slider. The value None can be used to disable the range slider function (it will be hidden). If the value is Some and an expression was specified for extent, the extent expression will be automatically set to None. That is, rangeHi is mutually exclusive with extent.

If either of rangeLo and rangeHi / extent is None, the range functionality is hidden.

def rangeLo(tx: T): Option[IntObj[T]]

Gets the expression associated with the lower bound of the range slider (if any).

Gets the expression associated with the lower bound of the range slider (if any).

def rangeLo_=(expr: Option[IntObj[T]])(tx: T): Unit

Sets the expression associated with the lower bound of the range slider. The value None can be used to disable the range slider function (it will be hidden).

Sets the expression associated with the lower bound of the range slider. The value None can be used to disable the range slider function (it will be hidden).

If either of rangeLo and rangeHi / extent is None, the range functionality is hidden.

def value(tx: T): Option[IntObj[T]]

Gets the expression associated with the single value slider (if any).

Gets the expression associated with the single value slider (if any).

def value_=(expr: Option[IntObj[T]])(tx: T): Unit

Sets the expression associated with the single value slider. The value None can be used to disable the single value slider function (it will be hidden).

Sets the expression associated with the single value slider. The value None can be used to disable the single value slider function (it will be hidden).

Inherited methods

def component: C
Inherited from
View
def dispose(tx: T): Unit
Inherited from
Disposable