The StylePropertyMapReadOnly interface of the the CSS Typed Object
API provides a read-only representation of a CSS declaration
that is an alternative to css.CSSStyleDeclaration
. Retrieve
instance of this interface using web.Element.computedStyleMap()
.
The StylePropertyMapReadOnly interface of the the CSS Typed Object API provides a read-only representation of a CSS declaration that is an alternative to `css.CSSStyleDeclaration`. Retrieve instance of this interface using `web.Element.computedStyleMap()`.
(entries this)
Method.
The StylePropertyMapReadOnly.entries() method returns an array
a given object's own enumerable property [key, value] pairs,
the same order as that provided by a web.for...in
loop (the
being that a for-in loop enumerates properties in the prototype
as well).
StylePropertyMapReadOnly.entries()
See also: https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/entries
Method. The StylePropertyMapReadOnly.entries() method returns an array a given object's own enumerable property [key, value] pairs, the same order as that provided by a `web.for...in` loop (the being that a for-in loop enumerates properties in the prototype as well). `StylePropertyMapReadOnly.entries()` See also: `https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/entries`
(for-each this & args)
Method.
The StylePropertyMapReadOnly.forEach() method executes a provided
once for each element of web.StylePropertyMapReadOnly
.
StylePropertyMapReadOnly.forEach(function callback(currentValue[, index[, array]]) { //your code }[, thisArg]);
See also: https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/forEach
Method. The StylePropertyMapReadOnly.forEach() method executes a provided once for each element of `web.StylePropertyMapReadOnly`. `StylePropertyMapReadOnly.forEach(function callback(currentValue[, index[, array]]) { //your code }[, thisArg]);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/forEach`
(get this property)
Method.
The get() method of the web.StylePropertyMapReadOnly
interface
a css.CSSStyleValue
object for the first value of the specified
var declarationBlock = StylePropertyMapReadOnly.get(property)
See also: https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/get
Method. The get() method of the `web.StylePropertyMapReadOnly` interface a `css.CSSStyleValue` object for the first value of the specified `var declarationBlock = StylePropertyMapReadOnly.get(property)` See also: `https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/get`
(get-all this property)
Method.
The getAll() method of the web.StylePropertyMapReadOnly
interface
an array of css.CSSStyleValue
objects containing the values
the provided property.
var cssStyleValues[] = StylePropertyMapReadOnly.getAll(property)
See also: https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/getAll
Method. The getAll() method of the `web.StylePropertyMapReadOnly` interface an array of `css.CSSStyleValue` objects containing the values the provided property. `var cssStyleValues[] = StylePropertyMapReadOnly.getAll(property)` See also: `https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/getAll`
(has this property)
Method.
The has() method of the web.StylePropertyMapReadOnly
interface
whether the specified property is in the StylePropertyMapReadOnly
var boolean = StylePropertyMapReadOnly.has(property)
See also: https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/has
Method. The has() method of the `web.StylePropertyMapReadOnly` interface whether the specified property is in the StylePropertyMapReadOnly `var boolean = StylePropertyMapReadOnly.has(property)` See also: `https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/has`
(keys this)
Method.
The StylePropertyMapReadOnly.keys() method returns a new Array containing the keys for each item in StylePropertyMapReadOnly
StylePropertyMapReadOnly.keys()
See also: https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/keys
Method. The StylePropertyMapReadOnly.keys() method returns a new Array containing the keys for each item in StylePropertyMapReadOnly `StylePropertyMapReadOnly.keys()` See also: `https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/keys`
(set-size! this val)
Property.
The size read-only property of the web.StylePropertyMapReadOnly
returns an unsinged long integer containing the size of the StylePropertyMapReadOnly
var size = StylePropertyMapReadOnly.size
See also: https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/size
Property. The size read-only property of the `web.StylePropertyMapReadOnly` returns an unsinged long integer containing the size of the StylePropertyMapReadOnly `var size = StylePropertyMapReadOnly.size` See also: `https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/size`
(size this)
Property.
The size read-only property of the web.StylePropertyMapReadOnly
returns an unsinged long integer containing the size of the StylePropertyMapReadOnly
var size = StylePropertyMapReadOnly.size
See also: https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/size
Property. The size read-only property of the `web.StylePropertyMapReadOnly` returns an unsinged long integer containing the size of the StylePropertyMapReadOnly `var size = StylePropertyMapReadOnly.size` See also: `https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/size`
(values this)
Method.
The StylePropertyMapReadOnly.values() method returns a new Array containing the values for each index in the StylePropertyMapReadOnly
StylePropertyMapReadOnly.values()
See also: https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/values
Method. The StylePropertyMapReadOnly.values() method returns a new Array containing the values for each index in the StylePropertyMapReadOnly `StylePropertyMapReadOnly.values()` See also: `https://developer.mozilla.org/en-US/docs/Web/API/StylePropertyMapReadOnly/values`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close