ByteScout PDF Extractor SDK - C# - XFA Form To XML - ByteScout
Announcement
Our ByteScout SDK products are sunsetting as we focus on expanding new solutions.
Learn More Open modal
Close modal
Announcement Important Update
ByteScout SDK Sunsetting Notice
Our ByteScout SDK products are sunsetting as we focus on our new & improved solutions. Thank you for being part of our journey, and we look forward to supporting you in this next chapter!

ByteScout PDF Extractor SDK – C# – XFA Form To XML

  • Home
  • /
  • Articles
  • /
  • ByteScout PDF Extractor SDK – C# – XFA Form To XML

ByteScout PDF Extractor SDK – C# – XFA Form To XML

Program.cs

using System;
using Bytescout.PDFExtractor;

namespace XFAFormToXML
{
class Program
{
static void Main(string[] args)
{
// Create Bytescout.PDFExtractor.XFAFormExtractor instance
XFAFormExtractor extractor = new XFAFormExtractor();
extractor.RegistrationName = “demo”;
extractor.RegistrationKey = “demo”;

// Load PDF document
// (!) We do not provide the sample document, please load your own.
extractor.LoadDocumentFromFile(“samplexfa.pdf”);

// Enumerate XFA form content part types
foreach (XFAFormContentType contentType in Enum.GetValues(typeof(XFAFormContentType)))
{
// Get count of content parts of specified type
int partCount = extractor.GetCount(contentType);

// Save parts as XML files
for (int i = 0; i < partCount; i++) { string fileName = contentType.ToString() + i + ".xml"; extractor.SaveToFile(contentType, i, fileName); Console.WriteLine("Saved form part " + fileName); } } // Cleanup extractor.Dispose(); Console.WriteLine(); Console.WriteLine("Press any key to continue..."); Console.ReadLine(); } } } [/csharp]


  Click here to get your Free Trial version of the SDK

Tutorials:

prev
next