When I import .doc with form fields, I see ‘fieldmarks’ in my LibreOffice 4.2 instead of form fields.
<field:fieldmark-start text:name="__Fieldmark__0_2026164759" field:type="vnd.oasis.opendocument.field.FORMTEXT">
<field:param field:name="Description" field:value=""/>
<field:param field:name="Name" field:value="Field1"/>
</field:fieldmark-start>Field1<field:fieldmark-end/>
For example, in OpenOffice I get input fields and access them through getTextFields.createEnumeration
.
Well, now I need to access fieldmark by name, get it range, delete it.
There is no any documentaion in sdk.
Neither getBookmarks
nor getTextFields
give me this fields.
How can I find them?
I cannot allow my program’s users to install LibreOffice instead of OpenOffice due to this problem.