Aspose::Cells::CellArea class

CellArea class

Represent an area of cells.

class CellArea

Methods

MethodDescription
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 char16_t* startCellName, const char16_t* endCellName)Creates a cell area.
ToString()Returns a string represents the current cell area object.

Fields

FieldDescription
EndColumnGets or set the end column of this area.
EndRowGets or set the end row of this area.
StartColumnGets or set the start column of this area.
StartRowGets 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