RangeCollection
Contents
[
Hide
]RangeCollection class
Encapsulates a collection of Range objects.
class RangeCollection;
Methods
| Method | Description |
|---|---|
| get(number) | Gets the Range element at the specified index. |
| add(Range) | Adds a Range item to the collection. |
| getCount() | @deprecated. Please use the ‘count’ property instead. Gets the number of elements contained in. |
| isNull() | Checks whether the implementation object is null. |
get(number)
Gets the Range element at the specified index.
get(index: number) : Range;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| index | number | The zero based index of the element. |
Returns
The element at the specified index.
add(Range)
Adds a Range item to the collection.
add(range: Range) : number;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| range | Range | Range object |
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;