ReportViewer.ExportDialog Method (RenderingExtension)
Opens in the Exporting dialog box for a specific rendering extension.
Namespace: Microsoft.Reporting.WinForms
Assembly: Microsoft.ReportViewer.WinForms (in Microsoft.ReportViewer.WinForms.dll)
Syntax
public DialogResult ExportDialog(
RenderingExtension extension
)
public:
DialogResult ExportDialog(
RenderingExtension^ extension
)
member ExportDialog :
extension:RenderingExtension -> DialogResult
Public Function ExportDialog (
extension As RenderingExtension
) As DialogResult
Parameters
extension
Type: Microsoft.Reporting.WinForms.RenderingExtensionThe rendering extension to use for the export.
Typically, youTo access the list of available rendering extensions, use using the ListRenderingExtensions method in ServerReport or LocalReport, depending on the processing mode (see ProcessingMode).
Return Value
Type: System.Windows.Forms.DialogResult
Cancel if the user clicked the Cancel button; Abort if the export operation failed; otherwise, OK.
Remarks
Invoking this method is equivalent to a user selecting an export format from the Export drop-down list on the toolbar.
See Also
ExportDialog Overload
ReportViewer Class
Microsoft.Reporting.WinForms Namespace
Return to top