General InformationThe Input ArgumentThe output file path generated from the output customizations is the input argument Output ArgumentsYou can use the following output arguments:
ExampleThe example shows a user who has chosen to have postprocessing. Use the TextTransformer.exe command, which is in the C:\Program Files (x86)\ACME directory. The argument used is -pdf, and the custom file path is the same as the generated output path. Although the output files end in -pdf. let GeneratedOutputFilePathStr(String) let CustomProcessingRequiredBoolean(Boolean) let ExternalCmdPathStr(String) let ExternalCmdNameStr(String) let ExternalCmdArgsStr(String) let CustomOutputFilePathStr(String) GeneratedOutputFilePathStr = Parameters->GetAttributeString("GeneratedOutputFilePath") CustomProcessingRequiredBoolean = true ExternalCmdPathStr = "C:\Program Files (x86)\ACME\ACMEtransformer.exe" ExternalCmdNameStr = "ACMEtransformer.exe" ExternalCmdArgsStr = ExternalCmdArgsStr + "-pdf " + CustomOutputFilePathStr ExternalCmdPathStr = "C:\Program Files (x86)\ACME\ACMEtransformer.exe" CustomOutputFilePathStr = ReplaceSubText(GeneratedOutputFilePathStr,"data.xml","pdf") |