Fill AcroForm - Fill PDF Form using C#

다음 코드 스니펫은 Aspose.PDF.Drawing 라이브러리에서도 작동합니다.

PDF 문서에서 폼 필드 채우기

폼 필드를 채우려면 Document 객체의 Form 컬렉션에서 필드를 가져온 다음, 필드의 Value 속성을 사용하여 필드 값 설정합니다.

이 예제는 TextBoxField를 선택하고 Value 속성을 사용하여 그 값을 설정합니다.

// 전체 예제와 데이터 파일은 https://github.com/aspose-pdf/Aspose.PDF-for-.NET 에서 확인해 주세요.
// 문서 디렉토리 경로입니다.
string dataDir = RunExamples.GetDataDir_AsposePdf_Forms();

// 문서 열기
Document pdfDocument = new Document(dataDir + "FillFormField.pdf");

// 필드 가져오기
TextBoxField textBoxField = pdfDocument.Form["textbox1"] as TextBoxField;

// 필드 값 수정
textBoxField.Value = "필드에 채워질 값";
dataDir = dataDir + "FillFormField_out.pdf";
// 업데이트된 문서 저장
pdfDocument.Save(dataDir);