SVGLengthList

JS
1.1
abstract class SVGLengthList
(source)

Exposes the JavaScript SVGLengthList to Kotlin

Constructors

JS
1.1

<init>

Exposes the JavaScript SVGLengthList to Kotlin

SVGLengthList()

Properties

JS
1.1

length

open val length: Int
JS
1.1

numberOfItems

open val numberOfItems: Int

Functions

JS
1.1

appendItem

fun appendItem(newItem: SVGLength): SVGLength
JS
1.1

clear

fun clear()
JS
1.1

getItem

fun getItem(index: Int): SVGLength
JS
1.1

initialize

fun initialize(newItem: SVGLength): SVGLength
JS
1.1

insertItemBefore

fun insertItemBefore(
    newItem: SVGLength,
    index: Int
): SVGLength
JS
1.1

removeItem

fun removeItem(index: Int): SVGLength
JS
1.1

replaceItem

fun replaceItem(newItem: SVGLength, index: Int): SVGLength

Extension Functions

JS
1.1

get

operator fun SVGLengthList.get(index: Int): SVGLength?
JS
1.1

set

operator fun SVGLengthList.set(
    index: Int,
    newItem: SVGLength)