diff options
Diffstat (limited to 'oovbaapi/ooo/vba/access/AcFormatConditionOperator.idl')
-rw-r--r-- | oovbaapi/ooo/vba/access/AcFormatConditionOperator.idl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/oovbaapi/ooo/vba/access/AcFormatConditionOperator.idl b/oovbaapi/ooo/vba/access/AcFormatConditionOperator.idl new file mode 100644 index 000000000..3368a4fc2 --- /dev/null +++ b/oovbaapi/ooo/vba/access/AcFormatConditionOperator.idl @@ -0,0 +1,15 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +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; + }; +}; }; }; + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |