summaryrefslogtreecommitdiff
path: root/oovbaapi/ooo/vba/word/WdPartOfSpeech.idl
blob: f3db6315dd557f2539697522f5af6390c8ab7194 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module ooo { module vba { module word {
    constants WdPartOfSpeech {
        const long wdAdjective = 0;
        const long wdAdverb = 2;
        const long wdConjunction = 5;
        const long wdIdiom = 8;
        const long wdInterjection = 7;
        const long wdNoun = 1;
        const long wdOther = 9;
        const long wdPreposition = 6;
        const long wdPronoun = 4;
        const long wdVerb = 3;
    };
}; }; };