SVGStringList

abstract external class SVGStringList

Exposes the JavaScript SVGStringList to Kotlin

Constructors

SVGStringList
Link copied to clipboard
JS
fun SVGStringList()

Functions

appendItem
Link copied to clipboard
JS
fun appendItem(newItem: String): String
clear
Link copied to clipboard
JS
fun clear()
getItem
Link copied to clipboard
JS
fun getItem(index: Int): String
initialize
Link copied to clipboard
JS
fun initialize(newItem: String): String
insertItemBefore
Link copied to clipboard
JS
fun insertItemBefore(newItem: String, index: Int): String
removeItem
Link copied to clipboard
JS
fun removeItem(index: Int): String
replaceItem
Link copied to clipboard
JS
fun replaceItem(newItem: String, index: Int): String

Properties

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

Extensions

get
Link copied to clipboard
JS
inline operator fun SVGStringList.get(index: Int): String?
set
Link copied to clipboard
JS
inline operator fun SVGStringList.set(index: Int, newItem: String)