RangeMask

data class RangeMask(    val from: Int,     val to: Int,     val maxLength: Int? = null,     val autofix: MaskAutofix? = null,     val lazy: Boolean? = null,     val eager: Boolean? = null,     val placeholderChar: Char? = null)

A text input mask configuration with a range.

Constructors

Link copied to clipboard
fun RangeMask(    from: Int,     to: Int,     maxLength: Int? = null,     autofix: MaskAutofix? = null,     lazy: Boolean? = null,     eager: Boolean? = null,     placeholderChar: Char? = null)

Properties

Link copied to clipboard
val autofix: MaskAutofix? = null
Link copied to clipboard
val eager: Boolean? = null
Link copied to clipboard
val from: Int
Link copied to clipboard
val lazy: Boolean? = null
Link copied to clipboard
val maxLength: Int? = null
Link copied to clipboard
val placeholderChar: Char? = null
Link copied to clipboard
val to: Int

Extensions

Link copied to clipboard
fun RangeMask.toJs(imask: dynamic): dynamic

An extension function to convert configuration class to a JS object.