SVGTransformList

JS
1.1
abstract class SVGTransformList
(source)

Exposes the JavaScript SVGTransformList to Kotlin

Constructors

JS
1.1

<init>

Exposes the JavaScript SVGTransformList to Kotlin

SVGTransformList()

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: SVGTransform): SVGTransform
JS
1.1

clear

fun clear()
JS
1.1

consolidate

fun consolidate(): SVGTransform?
JS
1.1

createSVGTransformFromMatrix

fun createSVGTransformFromMatrix(
    matrix: DOMMatrixReadOnly
): SVGTransform
JS
1.1

getItem

fun getItem(index: Int): SVGTransform
JS
1.1

initialize

fun initialize(newItem: SVGTransform): SVGTransform
JS
1.1

insertItemBefore

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

removeItem

fun removeItem(index: Int): SVGTransform
JS
1.1

replaceItem

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

Extension Functions

JS
1.1

get

operator fun SVGTransformList.get(index: Int): SVGTransform?
JS
1.1

set

operator fun SVGTransformList.set(
    index: Int,
    newItem: SVGTransform)