diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2010-04-16 10:27:47 +0200 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2010-04-16 10:27:47 +0200 |
commit | 8a241125de5db7c23fba21e491d68d7834ebcac7 (patch) | |
tree | 3b565a46bf90ab75c6da792e0fda946b7d044e98 /sc/inc/global.hxx | |
parent | 8bd51f02a305446c85cec058797a75bf59d60c4d (diff) | |
parent | 19e19bafa255e9ff6daa0b9504eaa88cf1bfa4fa (diff) |
CWS-TOOLING: integrate CWS calcfilterrange
Diffstat (limited to 'sc/inc/global.hxx')
-rw-r--r-- | sc/inc/global.hxx | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/sc/inc/global.hxx b/sc/inc/global.hxx index 185113e77389..b85205741334 100644 --- a/sc/inc/global.hxx +++ b/sc/inc/global.hxx @@ -414,6 +414,29 @@ enum ScGetDBMode SC_DB_OLD // nicht neu anlegen }; +/// For ScDBFunc::GetDBData() +enum ScGetDBSelection +{ + /** Keep selection as is, expand to used data area if no selection. */ + SC_DBSEL_KEEP, + + /** Shrink selection to sheet's data area. */ + SC_DBSEL_SHRINK_TO_SHEET_DATA, + + /** Shrink selection to actually used data area within the selection. */ + SC_DBSEL_SHRINK_TO_USED_DATA, + + /** If only one row or portion thereof is selected, shrink row to used data + columns and select further rows down until end of data. If an area is + selected, shrink rows to actually used columns. Else, no selection, + expand to used data area. */ + SC_DBSEL_ROW_DOWN, + + /** Behave as if the range corresponding to a ScDBData area was selected, + for API use. */ + SC_DBSEL_FORCE_MARK +}; + enum ScLkUpdMode { //Verknuepfungen LM_ALWAYS, //immer aktualisieren |