I'm working on a C# application that loads a Word document and tries to extract all FormFields (or bookmarks).
Using the following line of code...
wd.FormFields.get_Item(ref index).Type
I have no problem identifying a checkbox which returns wdFieldFormCheckBox or a drop-down list which returns wdFieldFormDropDown. When it comes to date fields I simply get wdFieldFormTextInput. This makes it indistinguishable from a regular text input field which also returns wdFieldFormTextInput. I need to be able to tell whether the input field is a date & time field or a date field or simply a time field. Is it possible to identify a date field?
Thanks!