summaryrefslogtreecommitdiff
path: root/oovbaapi/ooo/vba/word/WdSaveFormat.idl
blob: 8fb1e2da0ef4f80d015554ae3e82146b85e3cb79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module ooo { module vba { module word {
    constants WdSaveFormat {
        const long wdFormatDocument = 0;
        const long wdFormatDOSText = 4;
        const long wdFormatDOSTextLineBreaks = 5;
        const long wdFormatEncodedText = 7;
        const long wdFormatFilteredHTML = 10;
        const long wdFormatHTML = 8;
        const long wdFormatRTF = 6;
        const long wdFormatTemplate = 1;
        const long wdFormatText = 2;
        const long wdFormatTextLineBreaks = 3;
        const long wdFormatUnicodeText = 7;
        const long wdFormatWebArchive = 9;
        const long wdFormatXML = 11;
    };
}; }; };