Skip to content

Commit bd7f71d

Browse files
chore(Grid): apply changes as per comments
1 parent 3f4ba9f commit bd7f71d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

components/grid/export/csv.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ You can programmatically invoke the export feature of the Grid, by using the fol
105105

106106
| Method | Type | Description |
107107
| --- | --- | --- |
108-
| `SaveAsCsvFileAsync` | `ValueTask` | Sends the exported CSV file to the browser for download. You can pass [`GridCsvExportOptions`](slug:Telerik.Blazor.Components.GridCsvExportOptionsDescriptor) to customize the export. |
109-
| `ExportToCsvAsync` | `Task<MemoryStream>` | 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.GridCsvExportOptionsDescriptor) to customize the export. |
108+
| `SaveAsCsvFileAsync` | `ValueTask` | Sends the exported CSV file to the browser for download. You can pass [`GridCsvExportOptions`](slug:Telerik.Blazor.Components.Grid.GridCsvExportOptionsDescriptor) to customize the export. |
109+
| `ExportToCsvAsync` | `Task<MemoryStream>` | 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.Grid.GridCsvExportOptionsDescriptor) to customize the export. |
110110

111111
>caption Invoke the export function from code
112112

components/grid/export/excel.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ You can programmatically invoke the export feature of the Grid, by using the fol
105105

106106
| Method | Type | Description |
107107
| --- | --- | --- |
108-
| `SaveAsExcelFileAsync` | `ValueTask` | Sends the exported excel file to the browser for download. You can pass [`GridExcelExportOptions`](slug:Telerik.Blazor.Components.GridExcelExportOptionsDescriptor) to customize the export. |
109-
| `ExportToExcelAsync` | `Task<MemoryStream>` | 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.GridExcelExportOptionsDescriptor) to customize the export. |
108+
| `SaveAsExcelFileAsync` | `ValueTask` | Sends the exported excel file to the browser for download. You can pass [`GridExcelExportOptions`](slug:Telerik.Blazor.Components.Grid.GridExcelExportOptionsDescriptor) to customize the export. |
109+
| `ExportToExcelAsync` | `Task<MemoryStream>` | 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.Grid.GridExcelExportOptionsDescriptor) to customize the export. |
110110

111111
>caption Invoke the export function from code
112112

0 commit comments

Comments
 (0)