SVGStringList

JS
1.1
abstract class SVGStringList

Exposes the JavaScript SVGStringList to Kotlin

Constructors

JS
1.1

<init>

Exposes the JavaScript SVGStringList to Kotlin

SVGStringList()

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

clear

fun clear()
JS
1.1

getItem

fun getItem(index: Int): String
JS
1.1

initialize

fun initialize(newItem: String): String
JS
1.1

insertItemBefore

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

removeItem

fun removeItem(index: Int): String
JS
1.1

replaceItem

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

Extension Functions

JS
1.1

get

operator fun SVGStringList.get(index: Int): String?
JS
1.1

set

operator fun SVGStringList.set(index: Int, newItem: String)