更改iTextSharp复选框AcroField的颜色

时间:2017-11-16 21:05:40

标签: c# pdf itext acrofields

我尝试使用iTextSharp填充包含少量AcroField的表单。有几个文本字段和一个复选框字段,默认情况下,字段以蓝色填充。我希望这些字段用黑色填写。

使用以下作品更改文本字段:

form.SetFieldProperty("textboxname", "textcolor", Color.BLACK, null);

enter image description here

然而,尝试对复选框执行相同的操作并不起作用:

form.SetFieldProperty("checkboxname", "textcolor", Color.BLACK, null);

enter image description here

任何见解?谢谢!

0 个答案:

没有答案