function GetXfaConfig: TBytes;
Haalt de ruwe XML-bytes op die het config-pakket uit de XFA-metagegevensstructuur van het document vertegenwoordigen
Vereist dat het document actief is (eigenschap Active ingesteld op True) en XFA-formulierinhoud bevat; retourneert anders een lege array
var
ConfigBytes: TBytes;
begin
if not Pdf1.Active then Exit;
ConfigBytes := Pdf1.GetXfaConfig;
// process ConfigBytes
end;