Haxe API Documentation
Back | Index
extern class js.html.svg.NumberList
Available in js

The SVGNumberList defines a list of SVGNumber objects.

An SVGNumberList 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 SVGNumberList 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 : Number) : Number
function clear() : Void
function getItem(index : Int) : Number
function initialize(item : Number) : Number
function insertItemBefore(item : Number, index : Int) : Number
function removeItem(index : Int) : Number
function replaceItem(item : Number, index : Int) : Number
Back | Index