Aspose::Cells::Cells::CreateRange method
Contents
[
Hide
]Cells::CreateRange(const U16String&, const U16String&) method
Creates a Range object from a range of cells.
Range Aspose::Cells::Cells::CreateRange(const U16String &upperLeftCell, const U16String &lowerRightCell)
| Parameter | Type | Description |
|---|---|---|
| upperLeftCell | const U16String& | Upper left cell name. |
| lowerRightCell | const U16String& | Lower right cell name. |
ReturnValue
A Range object
See Also
- Class Range
- Class Vector
- Class U16String
- Class Cells
- Namespace Aspose::Cells
- Library Aspose.Cells for C++
Cells::CreateRange(const char16_t*, const char16_t*) method
Creates a Range object from a range of cells.
Range Aspose::Cells::Cells::CreateRange(const char16_t *upperLeftCell, const char16_t *lowerRightCell)
| Parameter | Type | Description |
|---|---|---|
| upperLeftCell | const char16_t* | Upper left cell name. |
| lowerRightCell | const char16_t* | Lower right cell name. |
ReturnValue
A Range object
See Also
- Class Range
- Class Vector
- Class Cells
- Namespace Aspose::Cells
- Library Aspose.Cells for C++
Cells::CreateRange(int32_t, int32_t, int32_t, int32_t) method
Creates a Range object from a range of cells.
Range Aspose::Cells::Cells::CreateRange(int32_t firstRow, int32_t firstColumn, int32_t totalRows, int32_t totalColumns)
| Parameter | Type | Description |
|---|---|---|
| firstRow | int32_t | First row of this range |
| firstColumn | int32_t | First column of this range |
| totalRows | int32_t | Number of rows |
| totalColumns | int32_t | Number of columns |
ReturnValue
A Range object
See Also
- Class Range
- Class Vector
- Class Cells
- Namespace Aspose::Cells
- Library Aspose.Cells for C++
Cells::CreateRange(const U16String&) method
Creates a Range object from an address of the range.
Range Aspose::Cells::Cells::CreateRange(const U16String &address)
| Parameter | Type | Description |
|---|---|---|
| address | const U16String& | The address of the range. |
ReturnValue
A Range object
See Also
- Class Range
- Class Vector
- Class U16String
- Class Cells
- Namespace Aspose::Cells
- Library Aspose.Cells for C++
Cells::CreateRange(const char16_t*) method
Creates a Range object from an address of the range.
Range Aspose::Cells::Cells::CreateRange(const char16_t *address)
| Parameter | Type | Description |
|---|---|---|
| address | const char16_t* | The address of the range. |
ReturnValue
A Range object
See Also
- Class Range
- Class Vector
- Class Cells
- Namespace Aspose::Cells
- Library Aspose.Cells for C++
Cells::CreateRange(int32_t, int32_t, bool) method
Creates a Range object from rows of cells or columns of cells.
Range Aspose::Cells::Cells::CreateRange(int32_t firstIndex, int32_t number, bool isVertical)
| Parameter | Type | Description |
|---|---|---|
| firstIndex | int32_t | First row index or first column index, zero based. |
| number | int32_t | Total number of rows or columns, one based. |
| isVertical | bool | True - Range created from columns of cells. False - Range created from rows of cells. |
ReturnValue
A Range object.
See Also
- Class Range
- Class Vector
- Class Cells
- Namespace Aspose::Cells
- Library Aspose.Cells for C++