Hello
I use the java aspose words version 4.0.3.0 and the current OS is WIN 7 with german regional settings. Decimal-seperator is a . and thousands-separator is '. I’ve tested different formfield definitions like
formfield.setTextInputType(TextFormFieldType.REGULAR_TEXT)
formfield.setTextInputFormat("")
formfield.setTextInputValue("12.00") or formfield.setTextInputValue("12.34")
the output result is 12 or 12.34
or
formfield.setTextInputType(TextFormFieldType.NUMBER_TEXT)
formfield.setTextInputFormat("#,##0.00") or field.setTextInputFormat("")
formfield.setTextInputValue(new BigDecimal("12.00")) or formfield.setTextInputValue(new BigDecimal("12.34"))
the output result is 12 or 12.34
How can I get an output result like 12.00?
best regards