我正在尝试填写 pdf 表单的字段并具有以下代码:
string filePath = @"c:\test.pdf";
string newPath = @"E\Result";
if(File.Exists(filePath))
{
PdfDocument document = PdfReader.Open(filePath, PdfDocumentOpenMode.Modify);
// Get the root object of all interactive form fields
PdfAcroForm form = document.AcroForm;
// Get all form fields of the whole document
PdfAcroField.PdfAcroFieldCollection fields = document.AcroForm.Fields; //"/Fields"
string[] names = fields.Names;
names = fields.DescendantNames;
}
问题是它给出了错误“ A PDF name must start with a slash (/)
”。
我发现document.AcroForm
有 4 对,其中一对有键“/Fields”。我如何达到它?