Interface SVGStringList
interface SVGStringList {
length: number;
numberOfItems: number;
[iterator](): ArrayIterator<string>;
appendItem(newItem: string): string;
clear(): void;
getItem(index: number): string;
initialize(newItem: string): string;
insertItemBefore(newItem: string, index: number): string;
removeItem(index: number): string;
replaceItem(newItem: string, index: number): string;
[index: number]: string;
}
length: number;
numberOfItems: number;
[iterator](): ArrayIterator<string>;
appendItem(newItem: string): string;
clear(): void;
getItem(index: number): string;
initialize(newItem: string): string;
insertItemBefore(newItem: string, index: number): string;
removeItem(index: number): string;
replaceItem(newItem: string, index: number): string;
[index: number]: string;
}
Indexable
- [index: number]: string
Index
Properties
Methods
Methods
[iterator]
- [iterator](): ArrayIterator<string>
Returns ArrayIterator<string>