DxfCollection
Contents
[
Hide
]DxfCollection class
Represents the master differential formatting records.
class DxfCollection implements Iterable<Style>;
Methods
| Method | Description |
|---|---|
| get(number) | Gets the element at the specified index. |
| getCount() | @deprecated. Please use the ‘count’ property instead. Gets the number of elements contained in. |
| isNull() | Checks whether the implementation object is null. |
[Symbol.iterator](): Iterator<Style>
Returns an iterator over the items in the collection. Enables use of for...of, spread syntax, and Array.from().
get(number)
Gets the element at the specified index.
get(index: number) : Style;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| index | number | The specified index. |
Returns
getCount()
@deprecated. Please use the ‘count’ property instead. Gets the number of elements contained in.
getCount() : number;
isNull()
Checks whether the implementation object is null.
isNull() : boolean;