Aspose::Cells::CellArea class
Contents
[
Hide
]CellArea class
Represent an area of cells.
class CellArea
Methods
| Method | Description |
|---|---|
| CellArea() | Default constructor. |
| CellArea(CellArea_Impl* impl) | Constructs from an implementation object. Internal use. |
| static CreateCellArea(int startRow, int startColumn, int endRow, int endColumn) | Creates a cell area. |
| static CreateCellArea(const U16String& startCellName, const U16String& endCellName) | Creates a cell area. |
| static CreateCellArea(const char16_t* startCellName, const char16_t* endCellName) | Creates a cell area. |
| ToString() | Returns a string represents the current cell area object. |
Fields
| Field | Description |
|---|---|
| EndColumn | Gets or set the end column of this area. |
| EndRow | Gets or set the end row of this area. |
| StartColumn | Gets or set the start column of this area. |
| StartRow | Gets or set the start row of this area. |
Examples
Aspose::Cells::Startup();
//Create Cell Area
CellArea ca;
ca.StartRow = 0;
ca.EndRow = 0;
ca.StartColumn = 0;
ca.EndColumn = 0;
Aspose::Cells::Cleanup();
See Also
- Namespace Aspose::Cells
- Library Aspose.Cells for C++