Export the form data to a file.

Namespace: Spire.Pdf.Widget
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 6.2.6.0 (6.2.6.2020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public void ExportData(
	string fileName,
	DataFormat dataFormat,
	string formName
)
Public Sub ExportData ( 
	fileName As String,
	dataFormat As DataFormat,
	formName As String
)
public:
void ExportData(
	String^ fileName, 
	DataFormat dataFormat, 
	String^ formName
)
member ExportData : 
        fileName : string * 
        dataFormat : DataFormat * 
        formName : string -> unit 

Parameters

fileName
String
Name of the document which is need to export.
dataFormat
DataFormat
The format of exported data.
formName
String
The name of the PDF file the data is exported from.

See Also