kotlin-stdlib
JS
kotlin-stdlib
/
org.w3c.dom.svg
/
SVGLengthList
SVGLength
List
JS
abstract
external
class
SVGLengthList
Exposes the JavaScript
SVGLengthList
to Kotlin
Constructors
Functions
Properties
Extensions
Constructors
SVGLength
List
Link copied to clipboard
JS
fun
SVGLengthList
(
)
Functions
append
Item
Link copied to clipboard
JS
fun
appendItem
(
newItem
:
SVGLength
)
:
SVGLength
clear
Link copied to clipboard
JS
fun
clear
(
)
get
Item
Link copied to clipboard
JS
fun
getItem
(
index
:
Int
)
:
SVGLength
initialize
Link copied to clipboard
JS
fun
initialize
(
newItem
:
SVGLength
)
:
SVGLength
insert
Item
Before
Link copied to clipboard
JS
fun
insertItemBefore
(
newItem
:
SVGLength
,
index
:
Int
)
:
SVGLength
remove
Item
Link copied to clipboard
JS
fun
removeItem
(
index
:
Int
)
:
SVGLength
replace
Item
Link copied to clipboard
JS
fun
replaceItem
(
newItem
:
SVGLength
,
index
:
Int
)
:
SVGLength
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
SVGLengthList
.
get
(
index
:
Int
)
:
SVGLength
?
set
Link copied to clipboard
JS
inline operator
fun
SVGLengthList
.
set
(
index
:
Int
,
newItem
:
SVGLength
)