'Declaration Public Overloads Sub Export( _ ByVal fileName As String, _ ByVal format As ExportFormat, _ ByVal overwrite As Boolean, _ ByVal showProgressionDialog As Boolean _ )
'Usage Dim instance As Report Dim fileName As String Dim format As ExportFormat Dim overwrite As Boolean Dim showProgressionDialog As Boolean instance.Export(fileName, format, overwrite, showProgressionDialog)
public void Export( string fileName, ExportFormat format, bool overwrite, bool showProgressionDialog )
Parameters
- fileName
- A string representing the name of the file which will contain the exported report.
- format
- An ExportFormat value representing the format to be used when exporting the report.
- overwrite
- true if the destination file is to be overwritten; false otherwise. If false and the destination file exists, an exception will be thrown.
- showProgressionDialog
- true if the progression dialog should be shown during the exporting process; false otherwise.