Export the dimension api of worksheet

This commit is contained in:
Debao Zhang
2013-10-29 22:07:50 +08:00
parent 0155cc5409
commit 18d00f9665
8 changed files with 53 additions and 189 deletions
+5
View File
@@ -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; }