ExcelFrameWriter Type
Static methods for writing Deedle frames to Excel files, accessible from C# as
ExcelFrameWriter.WriteExcel(path, frame) etc.
Static members
| Static member |
Description
|
Full Usage:
ExcelFrameWriter.WriteExcel(path, frame)
Parameters:
string
frame : Frame<int, string>
|
Write a frame to the first sheet of an Excel (.xlsx) file. Column keys become the header row. Any existing file is overwritten.
|
Full Usage:
ExcelFrameWriter.WriteExcelSheet(path, sheetName, frame)
Parameters:
string
sheetName : string
frame : Frame<int, string>
|
Write a frame to a named sheet of an Excel (.xlsx) file. Any existing file is overwritten.
|
Full Usage:
ExcelFrameWriter.WriteExcelSheets(path, sheets)
Parameters:
string
sheets : IEnumerable<string * Frame<int, string>>
|
Write multiple frames to separate sheets of a single Excel (.xlsx) file. Any existing file is overwritten.
|
|
Deedle