Export the dimension api of worksheet
This commit is contained in:
@@ -38,6 +38,11 @@ public:
|
||||
~CellRange();
|
||||
|
||||
QString toString() const;
|
||||
bool isValid() const;
|
||||
inline void setFirstRow(int row) { top = row; }
|
||||
inline void setLastRow(int row) { bottom = row; }
|
||||
inline void setFirstColumn(int col) { left = col; }
|
||||
inline void setLastColumn(int col) { right = col; }
|
||||
inline int firstRow() const { return top; }
|
||||
inline int lastRow() const { return bottom; }
|
||||
inline int firstColumn() const { return left; }
|
||||
|
||||
Reference in New Issue
Block a user