We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a333cd0 commit 6ba9f49Copy full SHA for 6ba9f49
components/spreadsheet/overview.md
@@ -33,10 +33,10 @@ To use the Telerik Spreadsheet for Blazor:
33
{
34
SpreadsheetData = Convert.FromBase64String(SampleExcelFile);
35
36
- // Or, load a file from your file system
37
- // var path = "C:\\Documents\\MyWorkbook.xlsx";
38
- // Specify the File namespace to avoid ambiguous reference with the SVG icon "File"
39
- // FileData = System.IO.File.ReadAllBytes(path);
+ // Or, load a file from your file system.
+ // Specify the full File namespace or use namespace aliases
+ // to avoid ambiguous reference with the Telerik SVG icon File.
+ // FileData = System.IO.File.ReadAllBytes("C:\\Documents\\MyWorkbook.xlsx");
40
41
await base.OnInitializedAsync();
42
}
0 commit comments