Table Module
Functions for working with tables. The table object itself just stores the name, the headers and the area in which the table lies. The values are stored in the sheetData object associated with the same worksheet as the table. Therefore, in order to work with tables, one should retrieve both the sheetData and the table. The value retrieval functions ask for both.
Nested modules
Modules | Description |
Functions and values
Function or value | Description |
Full Usage:
addTable workbookPart worksheetPart table
Parameters:
WorkbookPart
worksheetPart : WorksheetPart
table : Table
Returns: WorksheetPart
|
|
Full Usage:
create displayName area tableColumns
Parameters:
string
area : StringValue
tableColumns : TableColumn seq
Returns: Table
|
|
|
|
Full Usage:
getByNameBy predicate worksheetPart
Parameters:
string -> bool
worksheetPart : WorksheetPart
Returns: Table
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Full Usage:
toSparseValueMatrix sst sheetData table
Parameters: Returns: Dictionary<(int * string), string>
|
|
Full Usage:
tryCreateWithExistingHeaders sst sheetData name area
Parameters:
Option<SST>
sheetData : SheetData
name : string
area : StringValue
Returns: Table option
|
|
Full Usage:
tryGetByNameBy predicate worksheetPart
Parameters:
string -> bool
worksheetPart : WorksheetPart
Returns: Table option
|
|
Full Usage:
tryGetFirst worksheetPart
Parameters:
WorksheetPart
Returns: Table option
|
|
Full Usage:
tryGetTableColumnBy predicate table
Parameters:
TableColumn -> bool
table : Table
Returns: TableColumn option
|
|
Full Usage:
tryGetTableColumnByName name table
Parameters:
string
table : Table
Returns: TableColumn option
|