Spreadsheet Module
Functions for working the spreadsheet document.
Functions and values
Function or value | Description |
Full Usage:
appendRowValuesToSheet sheetId rowValues
Parameters:
'a
rowValues : 'T seq
Returns: SpreadsheetDocument
|
|
|
|
Full Usage:
deleteRowFromSheet sheetId rowId
Parameters:
'a
rowId : 'b
Returns: SpreadsheetDocument
|
|
Full Usage:
fromFile path isEditable
Parameters:
string
isEditable : bool
Returns: SpreadsheetDocument
|
|
Full Usage:
fromStream stream isEditable
Parameters:
Stream
isEditable : bool
Returns: SpreadsheetDocument
|
|
Full Usage:
getCellsBySheet sheet spreadsheetDocument skipSST
Parameters:
Sheet
spreadsheetDocument : SpreadsheetDocument
skipSST : bool
Returns: Cell seq
|
|
Full Usage:
getCellsBySheetID sheetID spreadsheetDocument skipSST
Parameters:
string
spreadsheetDocument : SpreadsheetDocument
skipSST : bool
Returns: Cell seq
|
SheetIndices are 1-based.
|
Full Usage:
getCellsBySheetIndex sheetIndex spreadsheetDocument skipSST
Parameters:
uint
spreadsheetDocument : SpreadsheetDocument
skipSST : bool
Returns: Cell seq
|
SheetIndices are 1-based.
|
Full Usage:
getOrInitSharedStringTablePart spreadsheetDocument
Parameters:
SpreadsheetDocument
Returns: SharedStringTablePart
|
|
Full Usage:
getRowsBySheetIndex sheetIndex spreadsheetDocument
Parameters:
uint
spreadsheetDocument : SpreadsheetDocument
Returns: Row seq
|
|
Full Usage:
getSharedStringTable spreadsheetDocument
Parameters:
SpreadsheetDocument
Returns: SharedStringTable
|
|
Full Usage:
getWorkbookPart spreadsheet
Parameters:
SpreadsheetDocument
Returns: WorkbookPart
|
|
Full Usage:
init sheetName path
Parameters:
string
path : string
Returns: SpreadsheetDocument
|
|
|
|
|
|
Full Usage:
initOnStream sheetName stream
Parameters:
string
stream : Stream
Returns: SpreadsheetDocument
|
|
Full Usage:
initWithSst sheetName path
Parameters:
string
path : string
Returns: SpreadsheetDocument
|
|
Full Usage:
initWithSstOnStream sheetName stream
Parameters:
string
stream : Stream
Returns: SpreadsheetDocument
|
|
Full Usage:
initWorkbookPart spreadsheet
Parameters:
SpreadsheetDocument
Returns: WorkbookPart
|
|
Full Usage:
insertRowValuesIntoSheetAt sheetId rowId rowValues
Parameters:
'a
rowId : 'b
rowValues : 'T seq
Returns: SpreadsheetDocument
|
|
Full Usage:
insertValueIntoSheetAt sheetId rowId colId value
Parameters:
'a
rowId : 'b
colId : 'c
value : 'T
Returns: SpreadsheetDocument
|
|
|
|
|
|
Full Usage:
saveAs path spreadsheet
Parameters:
string
spreadsheet : SpreadsheetDocument
Returns: SpreadsheetDocument
|
|
Full Usage:
saveChanges spreadsheet
Parameters:
SpreadsheetDocument
Returns: SpreadsheetDocument
|
|
Full Usage:
setValueInSheetAt sheetId rowId colId value
Parameters:
'a
rowId : 'b
colId : 'c
value : 'T
Returns: SpreadsheetDocument
|
|
Full Usage:
tryGetSharedStringTable spreadsheetDocument
Parameters:
SpreadsheetDocument
Returns: SharedStringTable option
|
|
Full Usage:
tryGetSheetBySheetIndex sheetIndex spreadsheetDocument
Parameters:
uint
spreadsheetDocument : SpreadsheetDocument
Returns: SheetData option
|
|
Full Usage:
tryGetSheetBySheetName name spreadsheetDocument
Parameters:
string
spreadsheetDocument : SpreadsheetDocument
Returns: SheetData option
|
|
Full Usage:
tryGetWorksheetPartBySheetIndex sheetIndex spreadsheetDocument
Parameters:
uint
spreadsheetDocument : SpreadsheetDocument
Returns: WorksheetPart option
|
|
Full Usage:
tryGetWorksheetPartBySheetName name spreadsheetDocument
Parameters:
string
spreadsheetDocument : SpreadsheetDocument
Returns: WorksheetPart option
|