summaryrefslogtreecommitdiff
path: root/oovbaapi/ooo/vba/access/AcFormatConditionOperator.idl
diff options
context:
space:
mode:
Diffstat (limited to 'oovbaapi/ooo/vba/access/AcFormatConditionOperator.idl')
-rw-r--r--oovbaapi/ooo/vba/access/AcFormatConditionOperator.idl12
1 files changed, 12 insertions, 0 deletions
diff --git a/oovbaapi/ooo/vba/access/AcFormatConditionOperator.idl b/oovbaapi/ooo/vba/access/AcFormatConditionOperator.idl
new file mode 100644
index 000000000000..b688c2a15585
--- /dev/null
+++ b/oovbaapi/ooo/vba/access/AcFormatConditionOperator.idl
@@ -0,0 +1,12 @@
+module ooo { module vba { module access {
+ constants AcFormatConditionOperator {
+ const long acBetween = 0;
+ const long acEqual = 2;
+ const long acGreaterThan = 4;
+ const long acGreaterThanOrEqual = 6;
+ const long acLessThan = 5;
+ const long acLessThanOrEqual = 7;
+ const long acNotBetween = 1;
+ const long acNotEqual = 3;
+ };
+}; }; };