标签: itext itext7
我需要使用一些简单的html设置字段的值,如
val = <strong>Some text</strong> if (fields.TryGetValue(fieldId, out PdfFormField toSet)) { toSet.SetValue(val); toSet.SetBorderWidth(0.0f); }
我已经使用richText进行了测试而没有任何成功。 不知道iText那么多,似乎找不到任何例子。