summaryrefslogtreecommitdiff
path: root/oovbaapi/ooo/vba/excel/XlDVType.idl
blob: 6116f44c7c19d30b6534205f8ca6324a977b27e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module excel {
    constants XlDVType {
        const long xlValidateCustom = 7;
        const long xlValidateDate = 4;
        const long xlValidateDecimal = 2;
        const long xlValidateInputOnly = 0;
        const long xlValidateList = 3;
        const long xlValidateTextLength = 6;
        const long xlValidateTime = 5;
        const long xlValidateWholeNumber = 1;
    };
}; }; };

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