Isi AcroForm - Isi Formulir PDF menggunakan C#

Potongan kode berikut juga bekerja dengan pustaka Aspose.PDF.Drawing.

Isi Bidang Formulir dalam Dokumen PDF

Untuk mengisi bidang formulir, ambil bidang dari koleksi Form objek Dokumen. kemudian atur nilai bidang menggunakan properti Value bidang tersebut.

Contoh ini memilih TextBoxField dan mengatur nilainya menggunakan properti Value.

// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void FillFormField()
{
    // The path to the documents directory
    var dataDir = RunExamples.GetDataDir_AsposePdf_Forms();

    // Open PDF document
    using (var document = new Aspose.Pdf.Document(dataDir + "FillFormField.pdf"))
    {
        // Get a field
        if (document.Form["textbox1"] is Aspose.Pdf.Forms.TextBoxField textBoxField)
        {
            // Modify field value
            textBoxField.Value = "Value to be filled in the field";
        }

        // Save PDF document
        document.Save(dataDir + "FillFormField_out.pdf");
    }
}