diff options
Diffstat (limited to 'oovbaapi/ooo/vba/excel/XlDisplayUnit.idl')
-rw-r--r-- | oovbaapi/ooo/vba/excel/XlDisplayUnit.idl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/oovbaapi/ooo/vba/excel/XlDisplayUnit.idl b/oovbaapi/ooo/vba/excel/XlDisplayUnit.idl new file mode 100644 index 000000000..509b37bbd --- /dev/null +++ b/oovbaapi/ooo/vba/excel/XlDisplayUnit.idl @@ -0,0 +1,16 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +module ooo { module vba { module excel { + constants XlDisplayUnit { + const long xlHundredMillions = -8; + const long xlHundreds = -2; + const long xlHundredThousands = -5; + const long xlMillionMillions = -10; + const long xlMillions = -6; + const long xlTenMillions = -7; + const long xlTenThousands = -4; + const long xlThousandMillions = -9; + const long xlThousands = -3; + }; +}; }; }; + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |