summaryrefslogtreecommitdiffstats
path: root/oovbaapi/ooo/vba/access/AcSendObjectType.idl
blob: 0ffdd9fae612dd381f6049bcaafb691d644ca093 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module access {
    constants AcSendObjectType {
        const long acSendDataAccessPage = 6;
        const long acSendForm = 2;
        const long acSendModule = 5;
        const long acSendNoObject = -1;
        const long acSendQuery = 1;
        const long acSendReport = 3;
        const long acSendTable = 0;
    };
}; }; };

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