SVGTransformList

abstract external class SVGTransformList

Exposes the JavaScript SVGTransformList to Kotlin

Constructors

SVGTransformList
Link copied to clipboard
fun SVGTransformList()

Functions

appendItem
Link copied to clipboard
fun appendItem(newItem: SVGTransform): SVGTransform
clear
Link copied to clipboard
fun clear()
consolidate
Link copied to clipboard
fun consolidate(): SVGTransform?
createSVGTransformFromMatrix
Link copied to clipboard
fun createSVGTransformFromMatrix(matrix: DOMMatrixReadOnly): SVGTransform
getItem
Link copied to clipboard
fun getItem(index: Int): SVGTransform
initialize
Link copied to clipboard
fun initialize(newItem: SVGTransform): SVGTransform
insertItemBefore
Link copied to clipboard
fun insertItemBefore(newItem: SVGTransform, index: Int): SVGTransform
removeItem
Link copied to clipboard
fun removeItem(index: Int): SVGTransform
replaceItem
Link copied to clipboard
fun replaceItem(newItem: SVGTransform, index: Int): SVGTransform

Properties

length
Link copied to clipboard
open val length: Int
numberOfItems
Link copied to clipboard
open val numberOfItems: Int

Extensions

get
Link copied to clipboard
inline operator fun SVGTransformList.get(index: Int): SVGTransform?
set
Link copied to clipboard
inline operator fun SVGTransformList.set(index: Int, newItem: SVGTransform)