summaryrefslogtreecommitdiff
path: root/oovbaapi/ooo/vba/excel/XlTotalsCalculation.idl
blob: a9cc179f0e19c8319738d83e4f0a543e86cf47de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module ooo { module vba { module excel {
    constants XlTotalsCalculation {
        const long xlTotalsCalculationAverage = 2;
        const long xlTotalsCalculationCount = 3;
        const long xlTotalsCalculationCountNums = 4;
        const long xlTotalsCalculationMax = 6;
        const long xlTotalsCalculationMin = 5;
        const long xlTotalsCalculationNone = 0;
        const long xlTotalsCalculationStdDev = 7;
        const long xlTotalsCalculationSum = 1;
        const long xlTotalsCalculationVar = 8;
    };
}; }; };