summaryrefslogtreecommitdiff
path: root/oovbaapi/ooo/vba/excel/XlLinkStatus.idl
blob: e041228d517138c3b495929608eb61131615fde4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module excel {
    constants XlLinkStatus {
        const long xlLinkStatusCopiedValues = 10;
        const long xlLinkStatusIndeterminate = 5;
        const long xlLinkStatusInvalidName = 7;
        const long xlLinkStatusMissingFile = 1;
        const long xlLinkStatusMissingSheet = 2;
        const long xlLinkStatusNotStarted = 6;
        const long xlLinkStatusOK = 0;
        const long xlLinkStatusOld = 3;
        const long xlLinkStatusSourceNotCalculated = 4;
        const long xlLinkStatusSourceNotOpen = 8;
        const long xlLinkStatusSourceOpen = 9;
    };
}; }; };

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