summaryrefslogtreecommitdiffstats
path: root/oovbaapi/ooo/vba/excel/XlDVType.idl
diff options
context:
space:
mode:
Diffstat (limited to 'oovbaapi/ooo/vba/excel/XlDVType.idl')
-rw-r--r--oovbaapi/ooo/vba/excel/XlDVType.idl15
1 files changed, 15 insertions, 0 deletions
diff --git a/oovbaapi/ooo/vba/excel/XlDVType.idl b/oovbaapi/ooo/vba/excel/XlDVType.idl
new file mode 100644
index 000000000..6116f44c7
--- /dev/null
+++ b/oovbaapi/ooo/vba/excel/XlDVType.idl
@@ -0,0 +1,15 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+module ooo { module vba { module excel {
+ constants XlDVType {
+ const long xlValidateCustom = 7;
+ const long xlValidateDate = 4;
+ const long xlValidateDecimal = 2;
+ const long xlValidateInputOnly = 0;
+ const long xlValidateList = 3;
+ const long xlValidateTextLength = 6;
+ const long xlValidateTime = 5;
+ const long xlValidateWholeNumber = 1;
+ };
+}; }; };
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */