我正在生成一个PDF,使用Sharepoint 2010 WebPart中用户输入的值填充PDFFormFields,如下所示:
PdfPCell cellPaymentAmountTextBox = new PdfPCell()
{
CellEvent = new DynamicTextbox("textBoxPaymentAmount"),
Phrase = new Phrase(boxPaymentAmount.Text, timesRoman9Font)
};
tblFirstRow.AddCell(cellPaymentAmountTextBox);
(“boxPaymentAmount”是WebPart上的文本框控件)
它工作得很好,除了输入的值在PDF文件中显示为灰色而不是黑色:
如何让这些变成黑色而不是灰色?
我我使用声明为黑色而非灰色的字体:
Font timesRoman9Font = FontFactory.GetFont(FontFactory.TIMES_ROMAN, 9, BaseColor.BLACK);