summaryrefslogtreecommitdiff
path: root/oovbaapi/ooo/vba/office/MsoAlertButtonType.idl
blob: 57194af93594ceea2deaba00b3579f3a421d75ee (plain)
1
2
3
4
5
6
7
8
9
10
11
module ooo { module vba { module office {
    constants MsoAlertButtonType {
        const long msoAlertButtonAbortRetryIgnore = 2;
        const long msoAlertButtonOK = 0;
        const long msoAlertButtonOKCancel = 1;
        const long msoAlertButtonRetryCancel = 5;
        const long msoAlertButtonYesAllNoCancel = 6;
        const long msoAlertButtonYesNo = 4;
        const long msoAlertButtonYesNoCancel = 3;
    };
}; }; };