如何将分配给PdfFormField TextFields的值设置为黑色而不是灰色?

时间:2015-04-20 21:12:32

标签: sharepoint-2010 pdf-generation itextsharp textfield

我正在生成一个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文件中显示为灰色而不是黑色:

enter image description here

如何让这些变成黑色而不是灰色?

使用声明为黑色而非灰色的字体:

Font timesRoman9Font = FontFactory.GetFont(FontFactory.TIMES_ROMAN, 9, BaseColor.BLACK);

0 个答案:

没有答案