summaryrefslogtreecommitdiffstats
path: root/oovbaapi/ooo/vba/excel/XlCommentDisplayMode.idl
diff options
context:
space:
mode:
Diffstat (limited to 'oovbaapi/ooo/vba/excel/XlCommentDisplayMode.idl')
-rw-r--r--oovbaapi/ooo/vba/excel/XlCommentDisplayMode.idl10
1 files changed, 10 insertions, 0 deletions
diff --git a/oovbaapi/ooo/vba/excel/XlCommentDisplayMode.idl b/oovbaapi/ooo/vba/excel/XlCommentDisplayMode.idl
new file mode 100644
index 000000000..dd3edcb46
--- /dev/null
+++ b/oovbaapi/ooo/vba/excel/XlCommentDisplayMode.idl
@@ -0,0 +1,10 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+module ooo { module vba { module excel {
+ constants XlCommentDisplayMode {
+ const long xlCommentAndIndicator = 1;
+ const long xlCommentIndicatorOnly = -1;
+ const long xlNoIndicator = 0;
+ };
+}; }; };
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */