ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Blazor.Viewer Assembly / GrapeCity.ActiveReports.Blazor.Viewer Namespace / ReportViewer Class / Export Method
Specifies export format.
Function invoked once the export result is available (its URL is passed in the callback).
Indicates whether the save as dialog should be shown immediately once the export result is ready.
The export settings available for RenderingExtensions.
The function periodically called to check if the export task should be canceled.

In This Topic
    Export Method (ReportViewer)
    In This Topic
    Exports the currently displayed report.
    Syntax
    'Declaration
     
    Public Function Export( _
       ByVal exportType As ExportTypes, _
       Optional ByVal callback As Action(Of String), _
       Optional ByVal saveAsDialog As Boolean, _
       Optional ByVal settings As Dictionary(Of String,String), _
       Optional ByVal isCancelRequested As Func(Of Boolean) _
    ) As Task

    Parameters

    exportType
    Specifies export format.
    callback
    Function invoked once the export result is available (its URL is passed in the callback).
    saveAsDialog
    Indicates whether the save as dialog should be shown immediately once the export result is ready.
    settings
    The export settings available for RenderingExtensions.
    isCancelRequested
    The function periodically called to check if the export task should be canceled.

    Return Value

    A task that represents the asynchronous operation of exporting the report.
    See Also