AcroForm values missing after flattening

自作多情 提交于 2019-11-28 02:07:22

When creating a form using Open Office, Open Office sets a flag telling iText not to create appearances. If you look at the FillDataSheet example, you'll see that we override this with the following line:

fields.setGenerateAppearances(true);

In your specific C# snippet, that would be:

f.GenerateAppearances = true;

It's important to set this value before setting the fields or the appearances won't be created.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!