IntRange Class
Contents
[
Hide
]Summary: Class for representing sequence of elements
Module: aspose.imaging
Full Name: aspose.imaging.IntRange
Constructors
| Name | Description | 
|---|---|
| IntRange(range) | Initializes a new instance of the IntRange class. | 
| IntRange(start, count) | Initializes a new instance of the IntRange class. | 
| IntRange(start, count, delta) | Initializes a new instance of the IntRange class. | 
Properties
| Name | Type | Access | Description | 
|---|---|---|---|
| range | int[] | r/w | Gets or sets the range. | 
Methods
| Name | Description | 
|---|---|
| get_array_one_item_from_index(index) | Returns one item array from specified index | 
| get_range(start, count, delta) | Gets the count range of int elements starting at start | 
Constructor: IntRange(range)
 IntRange(range) 
Initializes a new instance of the IntRange class.
Parameters:
| Parameter | Type | Description | 
|---|---|---|
| range | int[] | The range. | 
Constructor: IntRange(start, count)
 IntRange(start, count) 
Initializes a new instance of the IntRange class.
Parameters:
| Parameter | Type | Description | 
|---|---|---|
| start | int | The start. | 
| count | int | The count. | 
Constructor: IntRange(start, count, delta)
 IntRange(start, count, delta) 
Initializes a new instance of the IntRange class.
Parameters:
| Parameter | Type | Description | 
|---|---|---|
| start | int | The start. | 
| count | int | The count. | 
| delta | int | The delta. | 
Method: get_array_one_item_from_index(index)
 get_array_one_item_from_index(index) 
Returns one item array from specified index
Parameters:
| Parameter | Type | Description | 
|---|---|---|
| index | int | The range index. | 
Returns
| Type | Description | 
|---|---|
| int[] | The array of string | 
Method: get_range(start, count, delta) [static]
 get_range(start, count, delta) 
Gets the count range of int elements starting at start
Parameters:
| Parameter | Type | Description | 
|---|---|---|
| start | int | The start. | 
| count | int | The count. | 
| delta | int | The delta. | 
Returns
| Type | Description | 
|---|---|
| System.Collections.Generic.IEnumerable`1[[System.Int32]] | Array of items |