
jsMain.web.html.HTMLOptionElement.kt Maven / Gradle / Ivy
// Automatically generated - do not modify!
package web.html
abstract external class HTMLOptionElement :
HTMLElement {
/** Sets or retrieves the status of an option. */
var defaultSelected: Boolean
var disabled: Boolean
/** Retrieves a reference to the form that the object is embedded in. */
val form: HTMLFormElement?
/** Sets or retrieves the ordinal position of an option in a list box. */
val index: Int
/** Sets or retrieves a value that you can use to implement your own label functionality for the object. */
var label: String
/** Sets or retrieves whether the option in the list box is the default item. */
var selected: Boolean
/** Sets or retrieves the text string specified by the option tag. */
var text: String
/** Sets or retrieves the value which is returned to the server when the form control is submitted. */
var value: String
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy