Logo Deedle

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

ExcelFrameWriter.WriteExcel(path, frame)

Full Usage: ExcelFrameWriter.WriteExcel(path, frame)

Parameters:
    path : 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.

path : string
frame : Frame<int, string>

ExcelFrameWriter.WriteExcelSheet(path, sheetName, frame)

Full Usage: ExcelFrameWriter.WriteExcelSheet(path, sheetName, frame)

Parameters:
    path : string
    sheetName : string
    frame : Frame<int, string>

Write a frame to a named sheet of an Excel (.xlsx) file. Any existing file is overwritten.

path : string
sheetName : string
frame : Frame<int, string>

ExcelFrameWriter.WriteExcelSheetStream(stream, sheetName, frame)

Full Usage: ExcelFrameWriter.WriteExcelSheetStream(stream, sheetName, frame)

Parameters:
    stream : Stream
    sheetName : string
    frame : Frame<int, string>

Write a frame to a named sheet of an Excel (.xlsx) stream.

stream : Stream
sheetName : string
frame : Frame<int, string>

ExcelFrameWriter.WriteExcelSheets(path, sheets)

Full Usage: ExcelFrameWriter.WriteExcelSheets(path, sheets)

Parameters:

Write multiple frames to separate sheets of a single Excel (.xlsx) file. Any existing file is overwritten.

path : string
sheets : IEnumerable<string * Frame<int, string>>

ExcelFrameWriter.WriteExcelStream(stream, frame)

Full Usage: ExcelFrameWriter.WriteExcelStream(stream, frame)

Parameters:

Write a frame to an Excel (.xlsx) stream (first sheet).

stream : Stream
frame : Frame<int, string>

Type something to start searching.