Aspose.Pdf.Examples.CSharp.AsposePDF.Forms.DynamicXFAToAcroForm.Run C# (CSharp) Method

Run() public static method

public static Run ( ) : void
return void
        public static void Run()
        {
            // ExStart:DynamicXFAToAcroForm
            // The path to the documents directory.
            string dataDir = RunExamples.GetDataDir_AsposePdf_Forms();

            // Load dynamic XFA form
            Document document = new Document(dataDir + "DynamicXFAToAcroForm.pdf");

            // Set the form fields type as standard AcroForm
            document.Form.Type = FormType.Standard;

            dataDir = dataDir + "Standard_AcroForm_out.pdf";
            // Save the resultant PDF
            document.Save(dataDir);
            // ExEnd:DynamicXFAToAcroForm
            Console.WriteLine("\nDynamic XFA form converted to standard AcroForm successfully.\nFile saved at " + dataDir);
        }
    }
DynamicXFAToAcroForm