ExcelFrame Type
Static factory methods for reading Excel files, accessible from C# as
ExcelFrame.ReadExcel(path) etc.
Static members
| Static member |
Description
|
|
Read the first worksheet of an Excel file (.xls or .xlsx) as a
|
Full Usage:
ExcelFrame.ReadExcelSheet(path, sheetName)
Parameters:
string
sheetName : string
Returns: Frame<int, string>
|
Read a specific worksheet by name from an Excel file (.xls or .xlsx). The first row is treated as column headers.
|
Full Usage:
ExcelFrame.ReadExcelSheetByIndex(path, sheetIndex)
Parameters:
string
sheetIndex : int
Returns: Frame<int, string>
|
Read a specific worksheet by zero-based index from an Excel file (.xls or .xlsx). The first row is treated as column headers.
|
Full Usage:
ExcelFrame.SheetNames(path)
Parameters:
string
Returns: string list
|
Return the names of all worksheets in an Excel file.
|
Deedle