diff --git a/components/grid/export/csv.md b/components/grid/export/csv.md index 5096da4566..704eb3a0f5 100644 --- a/components/grid/export/csv.md +++ b/components/grid/export/csv.md @@ -123,8 +123,8 @@ You can programmatically invoke the export feature of the Grid, by using the fol | Method | Type | Description | | --- | --- | --- | -| `SaveAsCsvFileAsync` | `ValueTask` | Sends the exported CSV file to the browser for download. You can pass [`GridCsvExportOptions`](slug:Telerik.Blazor.Components.TelerikGrid-1.SaveAsCsvFileAsync) to customize the export. | -| `ExportToCsvAsync` | `Task` | Returns the exported data as a `MemoryStream`. The stream itself is finalized, so that the resource does not leak. To read and work with the stream, clone its available binary data to a new `MemoryStream` instance. You can pass [`GridCsvExportOptions`](slug:Telerik.Blazor.Components.TelerikGrid-1.ExportToCsvAsync) to customize the export. | +| `SaveAsCsvFileAsync` | `ValueTask` | Sends the exported CSV file to the browser for download. You can pass [`GridCsvExportOptions`](slug:Telerik.Blazor.Components.TelerikGrid-1) to customize the export. | +| `ExportToCsvAsync` | `Task` | Returns the exported data as a `MemoryStream`. The stream itself is finalized, so that the resource does not leak. To read and work with the stream, clone its available binary data to a new `MemoryStream` instance. You can pass [`GridCsvExportOptions`](slug:Telerik.Blazor.Components.TelerikGrid-1) to customize the export. | >caption Invoke the export function from code diff --git a/components/grid/export/excel.md b/components/grid/export/excel.md index 1a3cc8d5ff..0cc318ff11 100644 --- a/components/grid/export/excel.md +++ b/components/grid/export/excel.md @@ -132,8 +132,8 @@ You can programmatically invoke the export feature of the Grid, by using the fol | Method | Type | Description | | --- | --- | --- | -| `SaveAsExcelFileAsync` | `ValueTask` | Sends the exported excel file to the browser for download. You can pass [`GridExcelExportOptions`](slug:Telerik.Blazor.Components.TelerikGrid-1.SaveAsExcelFileAsync) to customize the export. | -| `ExportToExcelAsync` | `Task` | Returns the exported data as a `MemoryStream`. The stream itself is finalized, so that the resource does not leak. To read and work with the stream, clone its available binary data to a new `MemoryStream` instance. You can pass [`GridExcelExportOptions`](slug:Telerik.Blazor.Components.TelerikGrid-1.ExportToExcelAsync) to customize the export. | +| `SaveAsExcelFileAsync` | `ValueTask` | Sends the exported excel file to the browser for download. You can pass [`GridExcelExportOptions`](slug:Telerik.Blazor.Components.TelerikGrid-1) to customize the export. | +| `ExportToExcelAsync` | `Task` | Returns the exported data as a `MemoryStream`. The stream itself is finalized, so that the resource does not leak. To read and work with the stream, clone its available binary data to a new `MemoryStream` instance. You can pass [`GridExcelExportOptions`](slug:Telerik.Blazor.Components.TelerikGrid-1) to customize the export. | >caption Invoke the export function from code