summaryrefslogtreecommitdiffstats
path: root/oovbaapi/ooo/vba/word/WdPartOfSpeech.idl
diff options
context:
space:
mode:
Diffstat (limited to 'oovbaapi/ooo/vba/word/WdPartOfSpeech.idl')
-rw-r--r--oovbaapi/ooo/vba/word/WdPartOfSpeech.idl14
1 files changed, 14 insertions, 0 deletions
diff --git a/oovbaapi/ooo/vba/word/WdPartOfSpeech.idl b/oovbaapi/ooo/vba/word/WdPartOfSpeech.idl
new file mode 100644
index 000000000000..f3db6315dd55
--- /dev/null
+++ b/oovbaapi/ooo/vba/word/WdPartOfSpeech.idl
@@ -0,0 +1,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;
+ };
+}; }; };