HTMLSelectElement
Generated.swift:8948class HTMLSelectElement
class HTMLSelectElement
import DOM
class HTMLElement
protocol ARIAMixin : JSBridgedClass
protocol Any_CSSPseudoElement_or_Element : ConvertibleToJSValue
protocol Any_Element_or_HTMLCollection : ConvertibleToJSValue
protocol Any_Element_or_RadioNodeList : ConvertibleToJSValue
protocol Any_Element_or_Text : ConvertibleToJSValue
protocol Any_GeometryNode : ConvertibleToJSValue
protocol Any_HTMLElement_or_Int32 : ConvertibleToJSValue
protocol Any_Node_or_String : ConvertibleToJSValue
protocol ChildNode : JSBridgedClass
protocol ConstructibleFromJSValue
Types conforming to this protocol can be constructed from JSValue
.
protocol ConvertibleToJSValue
Objects that can be converted to a JavaScript value, preferably in a lossless manner.
protocol CustomStringConvertible
A type with a customized textual representation.
protocol ElementContentEditable : JSBridgedClass
protocol GeometryUtils : JSBridgedClass
protocol GlobalEventHandlers : JSBridgedClass
protocol HTMLOrSVGElement : JSBridgedClass
protocol JSBridgedClass : JSBridgedType
Conform to this protocol when your Swift class wraps a JavaScript class.
protocol JSBridgedType : ConstructibleFromJSValue, ConvertibleToJSValue, CustomStringConvertible
Use this protocol when your type has no single JavaScript class. For example, a union type of multiple classes or primitive values.
protocol NonDocumentTypeChildNode : JSBridgedClass
protocol ParentNode : JSBridgedClass
protocol Slottable : JSBridgedClass
convenience init()
required init(unsafelyWrapping jsObject: JSObject)
override class var constructor: JSFunction? { get }
@ReadWriteAttribute var autocomplete: String { get set }
@ReadWriteAttribute var disabled: Bool { get set }
@ReadonlyAttribute var form: HTMLFormElement? { get }
@ReadonlyAttribute var labels: NodeList { get }
@ReadWriteAttribute var length: UInt32 { get set }
@ReadWriteAttribute var multiple: Bool { get set }
@ReadWriteAttribute var name: String { get set }
@ReadonlyAttribute var options: HTMLOptionsCollection { get }
@ReadWriteAttribute var required: Bool { get set }
@ReadWriteAttribute var selectedIndex: Int32 { get set }
@ReadonlyAttribute var selectedOptions: HTMLCollection { get }
@ReadWriteAttribute var size: UInt32 { get set }
@ReadonlyAttribute var type: String { get }
@ReadonlyAttribute var validationMessage: String { get }
@ReadonlyAttribute var validity: ValidityState { get }
@ReadWriteAttribute var value: String { get set }
@ReadonlyAttribute var willValidate: Bool { get }
subscript(key: Int) -> HTMLOptionElement? { get set }
func add(element: HTMLOptGroupElement_or_HTMLOptionElement, before: HTMLElement_or_Int32? = nil)
func checkValidity() -> Bool
func item(index: UInt32) -> HTMLOptionElement?
func namedItem(name: String) -> HTMLOptionElement?
func remove()
func remove(index: Int32)
func reportValidity() -> Bool
func setCustomValidity(error: String)