haXe API Documentation
Back | Index
extern class js.html.svg.LengthList
Available in js

The SVGLengthList defines a list of SVGLength objects.

An SVGLengthList object can be designated as read only, which means that attempts to modify the object will result in an exception being thrown.

Gecko 5.0 note
(Firefox 5.0 / Thunderbird 5.0 / SeaMonkey 2.2)

Starting in Gecko 5.0 (Firefox 5.0 / Thunderbird 5.0 / SeaMonkey 2.2) ,the SVGLengthList DOM interface is now indexable and can be accessed like arrays



Documentation for this class was provided by MDN.
var numberOfItems(default,null) : Int
function appendItem(item : Length) : Length
function clear() : Void
function getItem(index : Int) : Length
function initialize(item : Length) : Length
function insertItemBefore(item : Length, index : Int) : Length
function removeItem(index : Int) : Length
function replaceItem(item : Length, index : Int) : Length
Back | Index