Skip to main content
All docs
V25.1
  • IGrid.ExportToCsvAsync(Stream, GridCsvExportOptions) Method

    Exports grid data to a stream in CSV format.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    Task ExportToCsvAsync(
        Stream stream,
        GridCsvExportOptions options = null
    )

    Parameters

    Name Type Description
    stream Stream

    The target stream for grid data export.

    Optional Parameters

    Name Type Default Description
    options GridCsvExportOptions null

    An object that contains export options.

    Returns

    Type Description
    Task

    The task that is completed when the file is exported.

    Remarks

    Refer to the ExportToCsvAsync(Stream, GridCsvExportOptions) method description for more information and an example.

    See Also