summaryrefslogtreecommitdiffstats
path: root/oovbaapi/ooo/vba/excel/XlAutoFilterOperator.idl
blob: 6983db2fd05c8afef13b6dcf1396dfe6be1ab928 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module excel {
    constants XlAutoFilterOperator {
        const long xlAnd = 1;
        const long xlBottom10Items = 4;
        const long xlBottom10Percent = 6;
        const long xlOr = 2;
        const long xlTop10Items = 3;
        const long xlTop10Percent = 5;
    };
}; }; };

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */