SVGStringList

abstract external class SVGStringList

Exposes the JavaScript SVGStringList to Kotlin

Constructors

SVGStringList
Link copied to clipboard
fun SVGStringList()

Functions

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

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 SVGStringList.get(index: Int): String?
set
Link copied to clipboard
inline operator fun SVGStringList.set(index: Int, newItem: String)