StylePropertyMapReadOnly

The StylePropertyMapReadOnly interface of the CSS Typed Object Model API provides a read-only representation of a CSS declaration block that is an alternative to CSSStyleDeclaration.

MDN Reference

Inheritors

Properties

Link copied to clipboard
open override val size: Int

The size read-only property of the containing the size of the StylePropertyMapReadOnly object.

Functions

Link copied to clipboard
Link copied to clipboard
abstract fun forEach(action: (value: JsIterable<CSSStyleValue>, key: JsString) -> Unit)
Link copied to clipboard

fun get(property: String): CSSStyleValue?

The get() method of the object for the first value of the specified property.

Link copied to clipboard

The getAll() method of the ``js-nolint getAll(property) `` - property - : The name of the property to retrieve all values of.

Link copied to clipboard
open override fun has(key: JsString): Boolean

The has() method of the property is in the StylePropertyMapReadOnly object.

Link copied to clipboard
open inline operator fun iterator(): Iterator<Tuple2<JsString, JsIterable<CSSStyleValue>>>
Link copied to clipboard
abstract fun keys(): JsIterator<JsString>
Link copied to clipboard