kotlin-stdlib
JS
kotlin-stdlib
/
org.w3c.dom.svg
/
SVGStringList
SVGString
List
JS
abstract
external
class
SVGStringList
Exposes the JavaScript
SVGStringList
to Kotlin
Constructors
Functions
Properties
Extensions
Constructors
SVGString
List
Link copied to clipboard
JS
fun
SVGStringList
(
)
Functions
append
Item
Link copied to clipboard
JS
fun
appendItem
(
newItem
:
String
)
:
String
clear
Link copied to clipboard
JS
fun
clear
(
)
get
Item
Link copied to clipboard
JS
fun
getItem
(
index
:
Int
)
:
String
initialize
Link copied to clipboard
JS
fun
initialize
(
newItem
:
String
)
:
String
insert
Item
Before
Link copied to clipboard
JS
fun
insertItemBefore
(
newItem
:
String
,
index
:
Int
)
:
String
remove
Item
Link copied to clipboard
JS
fun
removeItem
(
index
:
Int
)
:
String
replace
Item
Link copied to clipboard
JS
fun
replaceItem
(
newItem
:
String
,
index
:
Int
)
:
String
Properties
length
Link copied to clipboard
JS
open
val
length
:
Int
number
Of
Items
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
)