Select

abstract class Select<V>(name: String, val values: Array<V>, state: Int = 0) : AnimeFilter<Int> (source)

A select control, similar to HTML's <select>. Only one item can be selected.

Parameters

name

The filter text.

values

The options list.

state

The index of the selected item.

Constructors

Link copied to clipboard
constructor(name: String, values: Array<V>, state: Int = 0)

Properties

Link copied to clipboard
Link copied to clipboard
var state: Int
Link copied to clipboard
val values: Array<V>