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 2b7d58b commit 15225f2Copy full SHA for 15225f2
components/spreadsheet/overview.md
@@ -33,6 +33,11 @@ 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);
40
+
41
await base.OnInitializedAsync();
42
}
43
0 commit comments