diff options
author | Daniel Rentz <dr@openoffice.org> | 2001-10-26 15:44:01 +0000 |
---|---|---|
committer | Daniel Rentz <dr@openoffice.org> | 2001-10-26 15:44:01 +0000 |
commit | 204116503c21fde2a50bc7c69c0f551fe921fb5d (patch) | |
tree | 7c331c0c6b9f42156db8b934937158f6c43c5387 /sc/inc/table.hxx | |
parent | 08eba9c48d7c3ab89aaa045824f0cdd92484ea02 (diff) |
#93269# Decreased file size of Excel export
Diffstat (limited to 'sc/inc/table.hxx')
-rw-r--r-- | sc/inc/table.hxx | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/sc/inc/table.hxx b/sc/inc/table.hxx index 8bf3dcf5f..256f2636a 100644 --- a/sc/inc/table.hxx +++ b/sc/inc/table.hxx @@ -2,9 +2,9 @@ * * $RCSfile: table.hxx,v $ * - * $Revision: 1.14 $ + * $Revision: 1.15 $ * - * last change: $Author: er $ $Date: 2001-10-18 08:56:15 $ + * last change: $Author: dr $ $Date: 2001-10-26 16:42:31 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -561,8 +561,15 @@ public: void SetColFlags( USHORT nCol, BYTE nNewFlags ); void SetRowFlags( USHORT nRow, BYTE nNewFlags ); - USHORT GetLastFlaggedCol() const; - USHORT GetLastFlaggedRow() const; + /// @return the index of the last column with any set flags (auto-pagebreak is ignored). + USHORT GetLastFlaggedCol() const; + /// @return the index of the last row with any set flags (auto-pagebreak is ignored). + USHORT GetLastFlaggedRow() const; + + /// @return the index of the last changed column (flags and column width, auto pagebreak is ignored). + USHORT GetLastChangedCol() const; + /// @return the index of the last changed row (flags and row height, auto pagebreak is ignored). + USHORT GetLastChangedRow() const; BOOL IsFiltered(USHORT nRow) const; |