summaryrefslogtreecommitdiff
path: root/oovbaapi/ooo/vba/excel/XlFormatConditionOperator.idl
blob: 52b31b4256b3352de23a118d5c596ceb90d2ed70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module ooo { module vba { module excel {
    constants XlFormatConditionOperator {
        const long xlBetween = 1;
        const long xlEqual = 3;
        const long xlGreater = 5;
        const long xlGreaterEqual = 7;
        const long xlLess = 6;
        const long xlLessEqual = 8;
        const long xlNotBetween = 2;
        const long xlNotEqual = 4;
    };
}; }; };