Kaydet (Commit) 53488caa authored tarafından Eike Rathke's avatar Eike Rathke

TableRef: possible item combinations

Change-Id: Id02fb58bbb9419d7c70d8265cb990ffc8ebc68ec
üst d7b48d03
...@@ -215,12 +215,16 @@ public: ...@@ -215,12 +215,16 @@ public:
enum Item enum Item
{ {
TABLE = 0, TABLE = 0,
ALL = 1, ALL = 1,
HEADERS = 2, HEADERS = 2,
DATA = 4, DATA = 4,
TOTALS = 8, TOTALS = 8,
THIS_ROW = 16 THIS_ROW = 16,
HEADERS_DATA = HEADERS | DATA,
DATA_TOTALS = DATA | TOTALS,
HEADERS_DATA_TOTALS = HEADERS | DATA | TOTALS,
ALL_COLUMN = HEADERS_DATA_TOTALS | 32 // semantically the same, but just a [#All] item
}; };
ScTableRefToken( sal_uInt16 nIndex, Item eItem ); ScTableRefToken( sal_uInt16 nIndex, Item eItem );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment