diff --git a/index.html b/index.html index 8654067..d810fb2 100644 --- a/index.html +++ b/index.html @@ -1,70 +1,70 @@ - - - - - - FsSpreadsheet Documentation - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- +
+
+
+
+

FsSpreadsheet Documentation

+

FsSpreadsheet is a library for reading and writing spreadsheets in F#, Javascript and Python using Fable. It is a wrapper of the Python library openpyxl (https://openpyxl.readthedocs.io/en/stable/) and the Javascript library exceljs (https://www.npmjs.com/package/@nfdi4plants/exceljs).

+

Installation

+

F#

+

Project

+
dotnet add package FsSpreadsheet.Net
+
+

Script

+
#r "nuget: FsSpreadsheet.Net"
+
+open FsSpreadsheet
+open FsSpreadsheet.Net
+
+

Javascript

+
npm install @fslab/fsspreadsheet
+
+

Python

+
pip install fsspreadsheet
+
+

Usage_Xlsx_IO

+

F#

+
open FsSpreadsheet
+open FsSpreadsheet.Net
+
+let path = "path/to/spreadsheet.xlsx"
+
+let wb = FsWorkbook.fromXlsxFile(path)
+
+let newPath = "path/to/new/spreadsheet.xlsx"
+
+wb.ToXlsxFile(newPath)
+
+

Javascript

+
import { Xlsx } from '@fslab/fsspreadsheet/Xlsx.js';
+
+const path = "path/to/spreadsheet.xlsx"
+
+const wb = Xlsx.fromXlsxFile(path)
+
+const newPath = "path/to/new/spreadsheet.xlsx"
+
+Xlsx.toXlsxFile(newPath,wb)
+
+

Python

+
from fsspreadsheet.xlsx import Xlsx
+
+path = "path/to/spreadsheet.xlsx"
+
+wb = Xlsx.from_xlsx_file(path)
+
+newPath = "path/to/new/spreadsheet.xlsx"
+
+Xlsx.to_xlsx_file(newPath,wb)
+
+

Usage_Json_IO

+

F#

+
open FsSpreadsheet
+open FsSpreadsheet.Net
+
+let path = "path/to/spreadsheet.json"
+
+let wb = FsWorkbook.fromJsonFile(path)
+
+let newPath = "path/to/new/spreadsheet.json"
+
+wb.ToJsonFile(newPath)
+
+

Javascript

+
import { Json } from '@fslab/fsspreadsheet/Json.js';
+
+const path = "path/to/spreadsheet.json"
+
+const wb = Json.fromJsonFile(path)
+
+const newPath = "path/to/new/spreadsheet.json"
+
+Json.toJsonFile(newPath,wb)
+
+

Python

+
from fsspreadsheet.json import Json
+
+path = "path/to/spreadsheet.json"
+
+wb = Json.from_json_file(path)
+
+newPath = "path/to/new/spreadsheet.json"
+
+Json.to_json_file(newPath,wb)
+
+ +
+
+
+
namespace FsSpreadsheet
+
namespace FsSpreadsheet.Net
+
val path: string
+
val wb: FsWorkbook
Multiple items
type FsWorkbook = interface IDisposable new: unit -> FsWorkbook @@ -190,22 +190,22 @@

Python

member InitWorksheet: name: string -> FsWorksheet ...
<summary> Creates an empty FsWorkbook. - </summary>

--------------------
new: unit -> FsWorkbook
-
static member FsWorkbook.fromXlsxFile: filePath: string -> FsWorkbook
-
val newPath: string
-
member FsWorkbook.ToXlsxFile: path: string -> unit
-
static member FsWorkbook.fromJsonFile: filePath: string -> FsWorkbook
-
member FsWorkbook.ToJsonFile: path: string * ?spaces: int -> unit
- -
- - - - - - - - - - + </summary>

--------------------
new: unit -> FsWorkbook +
static member FsWorkbook.fromXlsxFile: filePath: string -> FsWorkbook
+
val newPath: string
+
member FsWorkbook.ToXlsxFile: path: string -> unit
+
static member FsWorkbook.fromJsonFile: filePath: string -> FsWorkbook
+
member FsWorkbook.ToJsonFile: path: string * ?spaces: int -> unit
+ + + + + + + + + + + + \ No newline at end of file diff --git a/index.json b/index.json index 75234ea..78d150b 100644 --- a/index.json +++ b/index.json @@ -1 +1 @@ -[{"uri":"/FsSpreadsheet/reference/fsspreadsheet.html","title":"FsSpreadsheet","content":"CellReference \nDictionary \nEnhancements \nFsCellAux \nRange \nSheetBuilder \nDataType \nFsAddress \nFsCell \nFsCellsCollection \nFsColumn \nFsRange \nFsRangeAddress \nFsRangeBase \nFsRangeColumn \nFsRangeRow \nFsRow \nFsTable \nFsTableField \nFsTableRow \nFsWorkbook \nFsWorksheet"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio.html","title":"FsSpreadsheet.CsvIO","content":"FsExtensions \nWriter"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl.html","title":"FsSpreadsheet.DSL","content":"Expression \nMessages \nOperators \nSheetEntityExtensions \nTransform \nCellBuilder \nCellElement \nColumnBuilder \nColumnElement \nColumnIndex \nDSL \nMessage \nReduceOperation \nRowBuilder \nRowElement \nRowIndex \nSheetBuilder \nSheetElement \nSheetEntity\u003C\u0027T\u003E \nTableBuilder \nTableElement \nValue \nWorkbook \nWorkbookBuilder \nWorkbookElement"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive.html","title":"FsSpreadsheet.Interactive","content":"Formatters \nFormatterKernelExtension \nFsSparseMatrix\u003C\u0027T\u003E"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js.html","title":"FsSpreadsheet.Js","content":"FsSpreadsheet \nJsCell \nJsTable \nJsWorkbook \nJsWorksheet \nJson \nXlsx"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json.html","title":"FsSpreadsheet.Json","content":"Cell \nRow \nTable \nValue \nWorkbook \nWorksheet"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net.html","title":"FsSpreadsheet.Net","content":"Cell \nCellData \nFsExtensions \nPackage \nRow \nSharedStringTable \nSheet \nSheetData \nSpreadsheet \nStylesheet \nTable \nWorkbook \nWorkbookPart \nWorksheet \nZipArchiveReader \nSST \nWriter"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py.html","title":"FsSpreadsheet.Py","content":"FsSpreadsheet \nPyCell \nPyCellType \nPyTable \nPyWorkbook \nPyWorksheet \nJson \nXlsx"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html","title":"CellReference","content":"CellReference \n\n Module containing functions to work with \u0022A1\u0022 style excel cell references.\n \nCellReference.indexPattern \nindexPattern \nCellReference.indexRegex \nindexRegex \nCellReference.colAdressToIndex \ncolAdressToIndex \nCellReference.indexToColAdress \nindexToColAdress \nCellReference.ofIndices \nofIndices \nCellReference.toIndices \ntoIndices \nCellReference.toColIndex \ntoColIndex \nCellReference.toRowIndex \ntoRowIndex \nCellReference.setColIndex \nsetColIndex \nCellReference.setRowIndex \nsetRowIndex \nCellReference.moveHorizontal \nmoveHorizontal \nCellReference.moveVertical \nmoveVertical"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#indexPattern","title":"CellReference.indexPattern","content":"CellReference.indexPattern \nindexPattern \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#indexRegex","title":"CellReference.indexRegex","content":"CellReference.indexRegex \nindexRegex \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#colAdressToIndex","title":"CellReference.colAdressToIndex","content":"CellReference.colAdressToIndex \ncolAdressToIndex \n\n Transforms excel column string indices (e.g. A, B, Z, AA, CD) to index number (starting with A = 1).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#indexToColAdress","title":"CellReference.indexToColAdress","content":"CellReference.indexToColAdress \nindexToColAdress \n\n Transforms number index to excel column string indices (e.g. A, B, Z, AA, CD) (starting with A = 1).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#ofIndices","title":"CellReference.ofIndices","content":"CellReference.ofIndices \nofIndices \n\n Maps 1 based column and row indices to \u0022A1\u0022 style reference.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#toIndices","title":"CellReference.toIndices","content":"CellReference.toIndices \ntoIndices \n\n Maps a \u0022A1\u0022 style excel cell reference to a column * row index tuple (1 Based indices).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#toColIndex","title":"CellReference.toColIndex","content":"CellReference.toColIndex \ntoColIndex \n\n Maps a \u0022A1\u0022 style excel cell reference to a column (1 Based indices).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#toRowIndex","title":"CellReference.toRowIndex","content":"CellReference.toRowIndex \ntoRowIndex \n\n Maps a \u0022A1\u0022 style excel cell reference to a row (1 Based indices).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#setColIndex","title":"CellReference.setColIndex","content":"CellReference.setColIndex \nsetColIndex \n\n Sets the column index (1 Based indices) of a \u0022A1\u0022 style excel cell reference.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#setRowIndex","title":"CellReference.setRowIndex","content":"CellReference.setRowIndex \nsetRowIndex \n\n Sets the row index (1 Based indices) of a \u0022A1\u0022 style excel cell reference.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#moveHorizontal","title":"CellReference.moveHorizontal","content":"CellReference.moveHorizontal \nmoveHorizontal \n\n Changes the column portion of a \u0022A1\u0022-style reference by the given amount (positive amount = increase and vice versa).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#moveVertical","title":"CellReference.moveVertical","content":"CellReference.moveVertical \nmoveVertical \n\n Changes the row portion of a \u0022A1\u0022-style reference by the given amount (positive amount = increase and vice versa).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dictionary.html","title":"Dictionary","content":"Dictionary \n \nDictionary.tryGet \ntryGet"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dictionary.html#tryGet","title":"Dictionary.tryGet","content":"Dictionary.tryGet \ntryGet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-enhancements.html","title":"Enhancements","content":"Enhancements \n \nEnhancements.toRangeColumns \ntoRangeColumns"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-enhancements.html#toRangeColumns","title":"Enhancements.toRangeColumns","content":"Enhancements.toRangeColumns \ntoRangeColumns \n\n Takes an FsRangeAddress and returns, for every column the range address spans, an FsRangeColumn.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellaux.html","title":"FsCellAux","content":"FsCellAux \n\n Creates an FsCell of \u0060DataType\u0060 dataType, with value of type \u0060string\u0060, and \u0060FsAddress\u0060 address.\n \nFsCellAux.boolConverter \nboolConverter"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellaux.html#boolConverter","title":"FsCellAux.boolConverter","content":"FsCellAux.boolConverter \nboolConverter \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html","title":"Range","content":"Range \n\n The areas marks the area in which the table lies. \n \nRange.ofBoundaries \nofBoundaries \nRange.toBoundaries \ntoBoundaries \nRange.rightBoundary \nrightBoundary \nRange.leftBoundary \nleftBoundary \nRange.upperBoundary \nupperBoundary \nRange.lowerBoundary \nlowerBoundary \nRange.moveHorizontal \nmoveHorizontal \nRange.moveVertical \nmoveVertical \nRange.extendRight \nextendRight \nRange.extendLeft \nextendLeft \nRange.referenceExceedsAreaRight \nreferenceExceedsAreaRight \nRange.referenceExceedsAreaLeft \nreferenceExceedsAreaLeft \nRange.referenceExceedsAreaAbove \nreferenceExceedsAreaAbove \nRange.referenceExceedsAreaBelow \nreferenceExceedsAreaBelow \nRange.referenceExceedsArea \nreferenceExceedsArea \nRange.isCorrect \nisCorrect"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#ofBoundaries","title":"Range.ofBoundaries","content":"Range.ofBoundaries \nofBoundaries \n\n Given A1-based top left start and bottom right end indices, returns a \u0022A1:A1\u0022-style area-\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#toBoundaries","title":"Range.toBoundaries","content":"Range.toBoundaries \ntoBoundaries \n\n Given a \u0022A1:A1\u0022-style area, returns A1-based cell start and end cellReferences.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#rightBoundary","title":"Range.rightBoundary","content":"Range.rightBoundary \nrightBoundary \n\n Gets the right boundary of the area.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#leftBoundary","title":"Range.leftBoundary","content":"Range.leftBoundary \nleftBoundary \n\n Gets the left boundary of the area.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#upperBoundary","title":"Range.upperBoundary","content":"Range.upperBoundary \nupperBoundary \n\n Gets the Upper boundary of the area.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#lowerBoundary","title":"Range.lowerBoundary","content":"Range.lowerBoundary \nlowerBoundary \n\n Gets the lower boundary of the area.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#moveHorizontal","title":"Range.moveHorizontal","content":"Range.moveHorizontal \nmoveHorizontal \n\n Moves both start and end of the area by the given amount (positive amount moves area to right and vice versa).\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#moveVertical","title":"Range.moveVertical","content":"Range.moveVertical \nmoveVertical \n\n Moves both start and end of the area by the given amount (positive amount moves area to right and vice versa).\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#extendRight","title":"Range.extendRight","content":"Range.extendRight \nextendRight \n\n Extends the right boundary of the area by the given amount (positive amount increases area to right and vice versa).\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#extendLeft","title":"Range.extendLeft","content":"Range.extendLeft \nextendLeft \n\n Extends the left boundary of the area by the given amount (positive amount decreases the area to left and vice versa).\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#referenceExceedsAreaRight","title":"Range.referenceExceedsAreaRight","content":"Range.referenceExceedsAreaRight \nreferenceExceedsAreaRight \n\n Returns true if the column index of the reference exceeds the right boundary of the area.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#referenceExceedsAreaLeft","title":"Range.referenceExceedsAreaLeft","content":"Range.referenceExceedsAreaLeft \nreferenceExceedsAreaLeft \n\n Returns true if the column index of the reference exceeds the left boundary of the area.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#referenceExceedsAreaAbove","title":"Range.referenceExceedsAreaAbove","content":"Range.referenceExceedsAreaAbove \nreferenceExceedsAreaAbove \n\n Returns true if the column index of the reference exceeds the upper boundary of the area.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#referenceExceedsAreaBelow","title":"Range.referenceExceedsAreaBelow","content":"Range.referenceExceedsAreaBelow \nreferenceExceedsAreaBelow \n\n Returns true if the column index of the reference exceeds the lower boundary of the area.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#referenceExceedsArea","title":"Range.referenceExceedsArea","content":"Range.referenceExceedsArea \nreferenceExceedsArea \n\n Returns true if the reference does not lie in the boundary of the area.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#isCorrect","title":"Range.isCorrect","content":"Range.isCorrect \nisCorrect \n\n Returns true if the A1:A1-style area is of correct format.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html","title":"SheetBuilder","content":"SheetBuilder \n \nSheetBuilder.FieldMap\u003C\u0027T\u003E \nFieldMap\u003C\u0027T\u003E \nSheetBuilder.Populate \nPopulate \nSheetBuilder.populate \npopulate \nSheetBuilder.Populate \nPopulate \nSheetBuilder.populate \npopulate \nSheetBuilder.createFrom \ncreateFrom \nSheetBuilder.createFrom \ncreateFrom \nSheetBuilder.PopulateTable \nPopulateTable \nSheetBuilder.createTableFrom \ncreateTableFrom \nSheetBuilder.Populate \nPopulate \nSheetBuilder.populate \npopulate \nSheetBuilder.createFrom \ncreateFrom \nSheetBuilder.createFrom \ncreateFrom \nSheetBuilder.createFrom \ncreateFrom"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#Populate","title":"SheetBuilder.Populate","content":"SheetBuilder.Populate \nPopulate \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#populate","title":"SheetBuilder.populate","content":"SheetBuilder.populate \npopulate \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#Populate","title":"SheetBuilder.Populate","content":"SheetBuilder.Populate \nPopulate \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#populate","title":"SheetBuilder.populate","content":"SheetBuilder.populate \npopulate \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#createFrom","title":"SheetBuilder.createFrom","content":"SheetBuilder.createFrom \ncreateFrom \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#createFrom","title":"SheetBuilder.createFrom","content":"SheetBuilder.createFrom \ncreateFrom \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#PopulateTable","title":"SheetBuilder.PopulateTable","content":"SheetBuilder.PopulateTable \nPopulateTable \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#createTableFrom","title":"SheetBuilder.createTableFrom","content":"SheetBuilder.createTableFrom \ncreateTableFrom \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#Populate","title":"SheetBuilder.Populate","content":"SheetBuilder.Populate \nPopulate \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#populate","title":"SheetBuilder.populate","content":"SheetBuilder.populate \npopulate \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#createFrom","title":"SheetBuilder.createFrom","content":"SheetBuilder.createFrom \ncreateFrom \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#createFrom","title":"SheetBuilder.createFrom","content":"SheetBuilder.createFrom \ncreateFrom \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#createFrom","title":"SheetBuilder.createFrom","content":"SheetBuilder.createFrom \ncreateFrom \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html","title":"FieldMap\u003C\u0027T\u003E","content":"FieldMap\u003C\u0027T\u003E \n \nFieldMap\u003C\u0027T\u003E.adjustToContents \nadjustToContents \nFieldMap\u003C\u0027T\u003E.header \nheader \nFieldMap\u003C\u0027T\u003E.header \nheader \nFieldMap\u003C\u0027T\u003E.create \ncreate \nFieldMap\u003C\u0027T\u003E.empty \nempty \nFieldMap\u003C\u0027T\u003E.field \nfield \nFieldMap\u003C\u0027T\u003E.field \nfield \nFieldMap\u003C\u0027T\u003E.field \nfield \nFieldMap\u003C\u0027T\u003E.field \nfield \nFieldMap\u003C\u0027T\u003E.field \nfield \nFieldMap\u003C\u0027T\u003E.field \nfield \nFieldMap\u003C\u0027T\u003E.field \nfield \nFieldMap\u003C\u0027T\u003E.field \nfield \nFieldMap\u003C\u0027T\u003E.field \nfield \nFieldMap\u003C\u0027T\u003E.field \nfield \nFieldMap\u003C\u0027T\u003E.CellTransformers \nCellTransformers \nFieldMap\u003C\u0027T\u003E.HeaderTransformers \nHeaderTransformers \nFieldMap\u003C\u0027T\u003E.ColumnWidth \nColumnWidth \nFieldMap\u003C\u0027T\u003E.RowHeight \nRowHeight \nFieldMap\u003C\u0027T\u003E.AdjustToContents \nAdjustToContents \nFieldMap\u003C\u0027T\u003E.Hash \nHash"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#adjustToContents","title":"FieldMap\u003C\u0027T\u003E.adjustToContents","content":"FieldMap\u003C\u0027T\u003E.adjustToContents \nadjustToContents \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#header","title":"FieldMap\u003C\u0027T\u003E.header","content":"FieldMap\u003C\u0027T\u003E.header \nheader \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#header","title":"FieldMap\u003C\u0027T\u003E.header","content":"FieldMap\u003C\u0027T\u003E.header \nheader \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#create","title":"FieldMap\u003C\u0027T\u003E.create","content":"FieldMap\u003C\u0027T\u003E.create \ncreate \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#empty","title":"FieldMap\u003C\u0027T\u003E.empty","content":"FieldMap\u003C\u0027T\u003E.empty \nempty \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#CellTransformers","title":"FieldMap\u003C\u0027T\u003E.CellTransformers","content":"FieldMap\u003C\u0027T\u003E.CellTransformers \nCellTransformers \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#HeaderTransformers","title":"FieldMap\u003C\u0027T\u003E.HeaderTransformers","content":"FieldMap\u003C\u0027T\u003E.HeaderTransformers \nHeaderTransformers \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#ColumnWidth","title":"FieldMap\u003C\u0027T\u003E.ColumnWidth","content":"FieldMap\u003C\u0027T\u003E.ColumnWidth \nColumnWidth \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#RowHeight","title":"FieldMap\u003C\u0027T\u003E.RowHeight","content":"FieldMap\u003C\u0027T\u003E.RowHeight \nRowHeight \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#AdjustToContents","title":"FieldMap\u003C\u0027T\u003E.AdjustToContents","content":"FieldMap\u003C\u0027T\u003E.AdjustToContents \nAdjustToContents \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#Hash","title":"FieldMap\u003C\u0027T\u003E.Hash","content":"FieldMap\u003C\u0027T\u003E.Hash \nHash \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-datatype.html","title":"DataType","content":"DataType \n\n Possible DataTypes used in a FsCell.\n \nDataType.InferCellValue \nInferCellValue \nDataType.String \nString \nDataType.Boolean \nBoolean \nDataType.Number \nNumber \nDataType.Date \nDate \nDataType.Empty \nEmpty"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-datatype.html#InferCellValue","title":"DataType.InferCellValue","content":"DataType.InferCellValue \nInferCellValue \n\n Returns the proper CellValues case for the given value.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-datatype.html#String","title":"DataType.String","content":"DataType.String \nString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-datatype.html#Boolean","title":"DataType.Boolean","content":"DataType.Boolean \nBoolean \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-datatype.html#Number","title":"DataType.Number","content":"DataType.Number \nNumber \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-datatype.html#Date","title":"DataType.Date","content":"DataType.Date \nDate \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-datatype.html#Empty","title":"DataType.Empty","content":"DataType.Empty \nEmpty \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html","title":"FsAddress","content":"FsAddress \n \nFsAddress.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsAddress.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsAddress.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsAddress.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsAddress.Compare \nCompare \nFsAddress.Copy \nCopy \nFsAddress.ToIndices \nToIndices \nFsAddress.UpdateIndices \nUpdateIndices \nFsAddress.RowNumber \nRowNumber \nFsAddress.FixedColumn \nFixedColumn \nFsAddress.ColumnNumber \nColumnNumber \nFsAddress.FixedRow \nFixedRow \nFsAddress.Address \nAddress \nFsAddress.compare \ncompare \nFsAddress.copy \ncopy \nFsAddress.toIndices \ntoIndices \nFsAddress.updateIndices \nupdateIndices"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#\u0060\u0060.ctor\u0060\u0060","title":"FsAddress.\u0060\u0060.ctor\u0060\u0060","content":"FsAddress.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#\u0060\u0060.ctor\u0060\u0060","title":"FsAddress.\u0060\u0060.ctor\u0060\u0060","content":"FsAddress.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#\u0060\u0060.ctor\u0060\u0060","title":"FsAddress.\u0060\u0060.ctor\u0060\u0060","content":"FsAddress.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#\u0060\u0060.ctor\u0060\u0060","title":"FsAddress.\u0060\u0060.ctor\u0060\u0060","content":"FsAddress.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#Compare","title":"FsAddress.Compare","content":"FsAddress.Compare \nCompare \nCompares the FsAddress with a given other one."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#Copy","title":"FsAddress.Copy","content":"FsAddress.Copy \nCopy \n\n Creates a deep copy of the FsAddress.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#ToIndices","title":"FsAddress.ToIndices","content":"FsAddress.ToIndices \nToIndices \nReturns the row- and the columnIndex of the FsAddress."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#UpdateIndices","title":"FsAddress.UpdateIndices","content":"FsAddress.UpdateIndices \nUpdateIndices \n\n Updates the row- and columnIndex respective to the given indices.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#RowNumber","title":"FsAddress.RowNumber","content":"FsAddress.RowNumber \nRowNumber \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#FixedColumn","title":"FsAddress.FixedColumn","content":"FsAddress.FixedColumn \nFixedColumn \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#ColumnNumber","title":"FsAddress.ColumnNumber","content":"FsAddress.ColumnNumber \nColumnNumber \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#FixedRow","title":"FsAddress.FixedRow","content":"FsAddress.FixedRow \nFixedRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#Address","title":"FsAddress.Address","content":"FsAddress.Address \nAddress \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#compare","title":"FsAddress.compare","content":"FsAddress.compare \ncompare \nChecks if 2 FsAddresses are equal."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#copy","title":"FsAddress.copy","content":"FsAddress.copy \ncopy \n\n Returns a deep copy of the given FsAddress.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#toIndices","title":"FsAddress.toIndices","content":"FsAddress.toIndices \ntoIndices \nReturns the row- and the columnIndex of a given FsAddress."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#updateIndices","title":"FsAddress.updateIndices","content":"FsAddress.updateIndices \nupdateIndices \n\n Updates the row- and columnIndex of a given FsAddress respective to the given indices.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html","title":"FsCell","content":"FsCell \n \nFsCell.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsCell.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsCell.Copy \nCopy \nFsCell.CopyFrom \nCopyFrom \nFsCell.CopyTo \nCopyTo \nFsCell.SetValueAs \nSetValueAs \nFsCell.StructurallyEquals \nStructurallyEquals \nFsCell.ValueAsBool \nValueAsBool \nFsCell.ValueAsChar \nValueAsChar \nFsCell.ValueAsDateTime \nValueAsDateTime \nFsCell.ValueAsDecimal \nValueAsDecimal \nFsCell.ValueAsDouble \nValueAsDouble \nFsCell.ValueAsFloat \nValueAsFloat \nFsCell.ValueAsGuid \nValueAsGuid \nFsCell.ValueAsInt \nValueAsInt \nFsCell.ValueAsLong \nValueAsLong \nFsCell.ValueAsString \nValueAsString \nFsCell.ValueAsUInt \nValueAsUInt \nFsCell.ValueAsULong \nValueAsULong \nFsCell.RowNumber \nRowNumber \nFsCell.DataType \nDataType \nFsCell.ColumnNumber \nColumnNumber \nFsCell.Address \nAddress \nFsCell.Value \nValue \nFsCell.copy \ncopy \nFsCell.copyFromTo \ncopyFromTo \nFsCell.create \ncreate \nFsCell.createEmpty \ncreateEmpty \nFsCell.createEmptyWithAdress \ncreateEmptyWithAdress \nFsCell.createWithAdress \ncreateWithAdress \nFsCell.createWithDataType \ncreateWithDataType \nFsCell.empty \nempty \nFsCell.getValueAsBool \ngetValueAsBool \nFsCell.getValueAsChar \ngetValueAsChar \nFsCell.getValueAsDateTime \ngetValueAsDateTime \nFsCell.getValueAsDecimal \ngetValueAsDecimal \nFsCell.getValueAsDouble \ngetValueAsDouble \nFsCell.getValueAsFloat \ngetValueAsFloat \nFsCell.getValueAsGuid \ngetValueAsGuid \nFsCell.getValueAsInt \ngetValueAsInt \nFsCell.getValueAsLong \ngetValueAsLong \nFsCell.getValueAsString \ngetValueAsString \nFsCell.getValueAsUInt \ngetValueAsUInt \nFsCell.getValueAsULong \ngetValueAsULong \nFsCell.setValueAs \nsetValueAs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#\u0060\u0060.ctor\u0060\u0060","title":"FsCell.\u0060\u0060.ctor\u0060\u0060","content":"FsCell.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#\u0060\u0060.ctor\u0060\u0060","title":"FsCell.\u0060\u0060.ctor\u0060\u0060","content":"FsCell.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#Copy","title":"FsCell.Copy","content":"FsCell.Copy \nCopy \n\n Creates a deep copy of this FsCell.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#CopyFrom","title":"FsCell.CopyFrom","content":"FsCell.CopyFrom \nCopyFrom \n\n Copies and replaces DataType and Value from a given FsCell into this one.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#CopyTo","title":"FsCell.CopyTo","content":"FsCell.CopyTo \nCopyTo \n\n Copies DataType and Value from this FsCell to a given one and replaces theirs.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#SetValueAs","title":"FsCell.SetValueAs","content":"FsCell.SetValueAs \nSetValueAs \n\n Sets the FsCell\u0027s value.\n \u003Cp class=\u0027fsdocs-para\u0027\u003EFsSpreadsheet will try to translate it to the corresponding type, if it cannot, the value will be left as a string.\u003C/p\u003E"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#StructurallyEquals","title":"FsCell.StructurallyEquals","content":"FsCell.StructurallyEquals \nStructurallyEquals \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsBool","title":"FsCell.ValueAsBool","content":"FsCell.ValueAsBool \nValueAsBool \n\n Gets the value as bool\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsChar","title":"FsCell.ValueAsChar","content":"FsCell.ValueAsChar \nValueAsChar \n\n Gets the value as char\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsDateTime","title":"FsCell.ValueAsDateTime","content":"FsCell.ValueAsDateTime \nValueAsDateTime \n\n Gets the value as DateTime\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsDecimal","title":"FsCell.ValueAsDecimal","content":"FsCell.ValueAsDecimal \nValueAsDecimal \n\n Gets the value as decimal\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsDouble","title":"FsCell.ValueAsDouble","content":"FsCell.ValueAsDouble \nValueAsDouble \n\n Gets the value as double\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsFloat","title":"FsCell.ValueAsFloat","content":"FsCell.ValueAsFloat \nValueAsFloat \n\n Gets the value as float\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsGuid","title":"FsCell.ValueAsGuid","content":"FsCell.ValueAsGuid \nValueAsGuid \n\n Gets the value as Guid\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsInt","title":"FsCell.ValueAsInt","content":"FsCell.ValueAsInt \nValueAsInt \n\n Gets the value as int\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsLong","title":"FsCell.ValueAsLong","content":"FsCell.ValueAsLong \nValueAsLong \n\n Gets the value as long\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsString","title":"FsCell.ValueAsString","content":"FsCell.ValueAsString \nValueAsString \n\n Gets the value as string\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsUInt","title":"FsCell.ValueAsUInt","content":"FsCell.ValueAsUInt \nValueAsUInt \n\n Gets the value as uint\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsULong","title":"FsCell.ValueAsULong","content":"FsCell.ValueAsULong \nValueAsULong \n\n Gets the value as ulong\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#RowNumber","title":"FsCell.RowNumber","content":"FsCell.RowNumber \nRowNumber \n\n Gets or sets the rowIndex of the FsCell.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#DataType","title":"FsCell.DataType","content":"FsCell.DataType \nDataType \n\n Gets or sets the DataType of this FsCell\u0027s data.\n \u003Cp class=\u0027fsdocs-para\u0027\u003EChanging the data type will cause FsSpreadsheet to convert the current value to the new DataType. \u003C/p\u003E\u003Cp class=\u0027fsdocs-para\u0027\u003EAn exception will be thrown if the current value cannot be converted to the new DataType.\u003C/p\u003E"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ColumnNumber","title":"FsCell.ColumnNumber","content":"FsCell.ColumnNumber \nColumnNumber \n\n Gets or sets the columnIndex of the FsCell.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#Address","title":"FsCell.Address","content":"FsCell.Address \nAddress \n\n Gets this FsCell\u0027s address, relative to the FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#Value","title":"FsCell.Value","content":"FsCell.Value \nValue \n\n Gets or sets the cell\u0027s value. To get or set a strongly typed value, use the GetValue\u003CT\u003E and SetValue methods.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#copy","title":"FsCell.copy","content":"FsCell.copy \ncopy \n\n Returns a deep copy of a given FsCell.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#copyFromTo","title":"FsCell.copyFromTo","content":"FsCell.copyFromTo \ncopyFromTo \n\n Copies and replaces DataType and Value from a source FsCell into a target FsCell. Returns the target cell.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#create","title":"FsCell.create","content":"FsCell.create \ncreate \n\n Create an FsCell from given rowNumber, colNumber, and value. Infers the DataType.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#createEmpty","title":"FsCell.createEmpty","content":"FsCell.createEmpty \ncreateEmpty \n\n Creates an empty FsCell.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#createEmptyWithAdress","title":"FsCell.createEmptyWithAdress","content":"FsCell.createEmptyWithAdress \ncreateEmptyWithAdress \n\n Creates an empty FsCell with a given FsAddress.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#createWithAdress","title":"FsCell.createWithAdress","content":"FsCell.createWithAdress \ncreateWithAdress \n\n Creates an FsCell with the given FsAdress and value. Inferes the DataType.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#createWithDataType","title":"FsCell.createWithDataType","content":"FsCell.createWithDataType \ncreateWithDataType \n\n Creates an FsCell with the given DataType, rowNumber, colNumber, and value.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#empty","title":"FsCell.empty","content":"FsCell.empty \nempty \n\n Creates an empty FsCell, set at row 0, column 0 (1-based).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsBool","title":"FsCell.getValueAsBool","content":"FsCell.getValueAsBool \ngetValueAsBool \n\n Gets the value as bool\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsChar","title":"FsCell.getValueAsChar","content":"FsCell.getValueAsChar \ngetValueAsChar \n\n Gets the value as char\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsDateTime","title":"FsCell.getValueAsDateTime","content":"FsCell.getValueAsDateTime \ngetValueAsDateTime \n\n Gets the value as DateTime\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsDecimal","title":"FsCell.getValueAsDecimal","content":"FsCell.getValueAsDecimal \ngetValueAsDecimal \n\n Gets the value as decimal\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsDouble","title":"FsCell.getValueAsDouble","content":"FsCell.getValueAsDouble \ngetValueAsDouble \n\n Gets the value as double\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsFloat","title":"FsCell.getValueAsFloat","content":"FsCell.getValueAsFloat \ngetValueAsFloat \n\n Gets the value as float\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsGuid","title":"FsCell.getValueAsGuid","content":"FsCell.getValueAsGuid \ngetValueAsGuid \n\n Gets the value as Guid\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsInt","title":"FsCell.getValueAsInt","content":"FsCell.getValueAsInt \ngetValueAsInt \n\n Gets the value as int\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsLong","title":"FsCell.getValueAsLong","content":"FsCell.getValueAsLong \ngetValueAsLong \n\n Gets the value as long\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsString","title":"FsCell.getValueAsString","content":"FsCell.getValueAsString \ngetValueAsString \n\n Gets the value as string\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsUInt","title":"FsCell.getValueAsUInt","content":"FsCell.getValueAsUInt \ngetValueAsUInt \n\n Gets the value as uint\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsULong","title":"FsCell.getValueAsULong","content":"FsCell.getValueAsULong \ngetValueAsULong \n\n Gets the value as ulong\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#setValueAs","title":"FsCell.setValueAs","content":"FsCell.setValueAs \nsetValueAs \n\n Sets an FsCell\u0027s value.\n \u003Cp class=\u0027fsdocs-para\u0027\u003EFsSpreadsheet will try to translate it to the corresponding type, if it cannot, the value will be left as a string.\u003C/p\u003E"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html","title":"FsCellsCollection","content":"FsCellsCollection \n \nFsCellsCollection.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsCellsCollection.Add \nAdd \nFsCellsCollection.Add \nAdd \nFsCellsCollection.Add \nAdd \nFsCellsCollection.Clear \nClear \nFsCellsCollection.ContainsCellAt \nContainsCellAt \nFsCellsCollection.Copy \nCopy \nFsCellsCollection.GetCells \nGetCells \nFsCellsCollection.GetCells \nGetCells \nFsCellsCollection.GetCells \nGetCells \nFsCellsCollection.GetCells \nGetCells \nFsCellsCollection.GetCells \nGetCells \nFsCellsCollection.GetCellsInColumn \nGetCellsInColumn \nFsCellsCollection.GetCellsInRow \nGetCellsInRow \nFsCellsCollection.GetFirstAddress \nGetFirstAddress \nFsCellsCollection.GetLastAddress \nGetLastAddress \nFsCellsCollection.RemoveCellAt \nRemoveCellAt \nFsCellsCollection.RemoveValueAt \nRemoveValueAt \nFsCellsCollection.TryGetCell \nTryGetCell \nFsCellsCollection.TryRemoveValueAt \nTryRemoveValueAt \nFsCellsCollection.MaxColumnNumber \nMaxColumnNumber \nFsCellsCollection.MaxRowNumber \nMaxRowNumber \nFsCellsCollection.Count \nCount \nFsCellsCollection.addCell \naddCell \nFsCellsCollection.addCellWithIndeces \naddCellWithIndeces \nFsCellsCollection.addCells \naddCells \nFsCellsCollection.containsCellAt \ncontainsCellAt \nFsCellsCollection.copy \ncopy \nFsCellsCollection.createFromCells \ncreateFromCells \nFsCellsCollection.filterCellsFromTo \nfilterCellsFromTo \nFsCellsCollection.filterCellsFromToAddress \nfilterCellsFromToAddress \nFsCellsCollection.getCells \ngetCells \nFsCellsCollection.getCellsFromTo \ngetCellsFromTo \nFsCellsCollection.getCellsFromToAddress \ngetCellsFromToAddress \nFsCellsCollection.getCellsInColumn \ngetCellsInColumn \nFsCellsCollection.getCellsInRow \ngetCellsInRow \nFsCellsCollection.getFirstAddress \ngetFirstAddress \nFsCellsCollection.getLastAddress \ngetLastAddress \nFsCellsCollection.removeCellAt \nremoveCellAt \nFsCellsCollection.removeValueAt \nremoveValueAt \nFsCellsCollection.tryGetCell \ntryGetCell \nFsCellsCollection.tryRemoveValueAt \ntryRemoveValueAt"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#\u0060\u0060.ctor\u0060\u0060","title":"FsCellsCollection.\u0060\u0060.ctor\u0060\u0060","content":"FsCellsCollection.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#Add","title":"FsCellsCollection.Add","content":"FsCellsCollection.Add \nAdd \n\n Adds FsCells to the FsCellsCollection.\n \nDerives row- and columnIndeces from the FsAddress of the FsCells."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#Add","title":"FsCellsCollection.Add","content":"FsCellsCollection.Add \nAdd \n\n Adds an FsCell to the FsCellsCollection.\n \nDerives row- and columnIndex from the FsAddress of the FsCell."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#Add","title":"FsCellsCollection.Add","content":"FsCellsCollection.Add \nAdd \n\n Adds an FsCell of given rowIndex and columnIndex to the FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#Clear","title":"FsCellsCollection.Clear","content":"FsCellsCollection.Clear \nClear \n\n Empties the whole FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#ContainsCellAt","title":"FsCellsCollection.ContainsCellAt","content":"FsCellsCollection.ContainsCellAt \nContainsCellAt \n\n Checks if an FsCell exists at given row- and columnIndex.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#Copy","title":"FsCellsCollection.Copy","content":"FsCellsCollection.Copy \nCopy \n\n Creates a deep copy of the FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetCells","title":"FsCellsCollection.GetCells","content":"FsCellsCollection.GetCells \nGetCells \n\n Returns the FsCells from given startAddress to lastAddress.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetCells","title":"FsCellsCollection.GetCells","content":"FsCellsCollection.GetCells \nGetCells \n\n Returns the FsCells from given rowStart to rowEnd and columnStart to columnEnd.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetCells","title":"FsCellsCollection.GetCells","content":"FsCellsCollection.GetCells \nGetCells \n\n Returns the FsCells from given startAddress to lastAddress and fulfilling the predicate.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetCells","title":"FsCellsCollection.GetCells","content":"FsCellsCollection.GetCells \nGetCells \n\n Returns the FsCells from given rowStart to rowEnd and columnStart to columnEnd and fulfilling the predicate.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetCells","title":"FsCellsCollection.GetCells","content":"FsCellsCollection.GetCells \nGetCells \n\n Returns all FsCells of the FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetCellsInColumn","title":"FsCellsCollection.GetCellsInColumn","content":"FsCellsCollection.GetCellsInColumn \nGetCellsInColumn \n\n Returns all FsCells in the given columnIndex.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetCellsInRow","title":"FsCellsCollection.GetCellsInRow","content":"FsCellsCollection.GetCellsInRow \nGetCellsInRow \n\n Returns all FsCells in the given rowIndex.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetFirstAddress","title":"FsCellsCollection.GetFirstAddress","content":"FsCellsCollection.GetFirstAddress \nGetFirstAddress \n\n Returns the upper left corner of the FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetLastAddress","title":"FsCellsCollection.GetLastAddress","content":"FsCellsCollection.GetLastAddress \nGetLastAddress \n\n Returns the lower right corner of the FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#RemoveCellAt","title":"FsCellsCollection.RemoveCellAt","content":"FsCellsCollection.RemoveCellAt \nRemoveCellAt \n\n Removes an FsCell of given rowIndex and columnIndex from the FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#RemoveValueAt","title":"FsCellsCollection.RemoveValueAt","content":"FsCellsCollection.RemoveValueAt \nRemoveValueAt \n\n Removes the value of an FsCell at given row- and columnIndex from the FsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#TryGetCell","title":"FsCellsCollection.TryGetCell","content":"FsCellsCollection.TryGetCell \nTryGetCell \n\n Returns the FsCell at given rowIndex and columnIndex if it exists. Otherwise returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#TryRemoveValueAt","title":"FsCellsCollection.TryRemoveValueAt","content":"FsCellsCollection.TryRemoveValueAt \nTryRemoveValueAt \n\n Removes the value of an FsCell at given row- and columnIndex if it exists from the FsCollection.\n \nDoes nothing if the row or column of given index does not exist."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#MaxColumnNumber","title":"FsCellsCollection.MaxColumnNumber","content":"FsCellsCollection.MaxColumnNumber \nMaxColumnNumber \n\n The highest columnIndex in The FsCellsCollection.\n \nDo not confuse with the number of columns in the FsCellsCollection."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#MaxRowNumber","title":"FsCellsCollection.MaxRowNumber","content":"FsCellsCollection.MaxRowNumber \nMaxRowNumber \n\n The highest rowIndex in The FsCellsCollection.\n \nDo not confuse with the number of rows in the FsCellsCollection."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#Count","title":"FsCellsCollection.Count","content":"FsCellsCollection.Count \nCount \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#addCell","title":"FsCellsCollection.addCell","content":"FsCellsCollection.addCell \naddCell \n\n Adds an FsCell to an FsCellsCollection.\n \nDerives row- and columnIndex from the FsAddress of the FsCell."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#addCellWithIndeces","title":"FsCellsCollection.addCellWithIndeces","content":"FsCellsCollection.addCellWithIndeces \naddCellWithIndeces \n\n Adds an FsCell of given rowIndex and columnIndex to an FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#addCells","title":"FsCellsCollection.addCells","content":"FsCellsCollection.addCells \naddCells \n\n Adds FsCells to an FsCellsCollection.\n \nDerives row- and columnIndeces from the FsAddress of the FsCells."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#containsCellAt","title":"FsCellsCollection.containsCellAt","content":"FsCellsCollection.containsCellAt \ncontainsCellAt \n\n Checks if an FsCell exists at given row- and columnIndex of a given FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#copy","title":"FsCellsCollection.copy","content":"FsCellsCollection.copy \ncopy \n\n Returns a deep copy of a given FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#createFromCells","title":"FsCellsCollection.createFromCells","content":"FsCellsCollection.createFromCells \ncreateFromCells \n\n Creates an FsCellsCollection from the given FsCells.\n \nDerives row- and columnIndices from the FsAddress of the FsCells."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#filterCellsFromTo","title":"FsCellsCollection.filterCellsFromTo","content":"FsCellsCollection.filterCellsFromTo \nfilterCellsFromTo \n\n Returns the FsCells from an FsCellsCollection with given rowStart to rowEnd and columnStart to columnEnd and fulfilling the predicate.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#filterCellsFromToAddress","title":"FsCellsCollection.filterCellsFromToAddress","content":"FsCellsCollection.filterCellsFromToAddress \nfilterCellsFromToAddress \n\n Returns the FsCells from an FsCellsCollection with given startAddress to lastAddress and fulfilling the predicate.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#getCells","title":"FsCellsCollection.getCells","content":"FsCellsCollection.getCells \ngetCells \n\n Returns all FsCells of the FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#getCellsFromTo","title":"FsCellsCollection.getCellsFromTo","content":"FsCellsCollection.getCellsFromTo \ngetCellsFromTo \n\n Returns the FsCells from an FsCellsCollection with given rowStart to rowEnd and columnStart to columnEnd.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#getCellsFromToAddress","title":"FsCellsCollection.getCellsFromToAddress","content":"FsCellsCollection.getCellsFromToAddress \ngetCellsFromToAddress \n\n Returns the FsCells from an FsCellsCollection with given startAddress to lastAddress.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#getCellsInColumn","title":"FsCellsCollection.getCellsInColumn","content":"FsCellsCollection.getCellsInColumn \ngetCellsInColumn \n\n Returns all FsCells in an FsCellsCollection with the given columnIndex.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#getCellsInRow","title":"FsCellsCollection.getCellsInRow","content":"FsCellsCollection.getCellsInRow \ngetCellsInRow \n\n Returns all FsCells in an FsCellsCollection with the given rowIndex.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#getFirstAddress","title":"FsCellsCollection.getFirstAddress","content":"FsCellsCollection.getFirstAddress \ngetFirstAddress \n\n Returns the upper left corner of a given FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#getLastAddress","title":"FsCellsCollection.getLastAddress","content":"FsCellsCollection.getLastAddress \ngetLastAddress \n\n Returns the lower right corner of a given FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#removeCellAt","title":"FsCellsCollection.removeCellAt","content":"FsCellsCollection.removeCellAt \nremoveCellAt \n\n Removes an FsCell of given rowIndex and columnIndex from an FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#removeValueAt","title":"FsCellsCollection.removeValueAt","content":"FsCellsCollection.removeValueAt \nremoveValueAt \n\n Removes the value of an FsCell at given row- and columnIndex from a given FsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#tryGetCell","title":"FsCellsCollection.tryGetCell","content":"FsCellsCollection.tryGetCell \ntryGetCell \n\n Returns the FsCell from an FsCellsCollection at given rowIndex and columnIndex if it exists. Otherwise returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#tryRemoveValueAt","title":"FsCellsCollection.tryRemoveValueAt","content":"FsCellsCollection.tryRemoveValueAt \ntryRemoveValueAt \n\n Removes the value of an FsCell at given row- and columnIndex if it exists from a given FsCollection.\n \nDoes nothing if the row or column of given index does not exist."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html","title":"FsColumn","content":"FsColumn \n\n Creates an FsColumn from the given FsRangeAddress, consisting of FsCells within a given FsCellsCollection, and a styleValue.\n \nThe FsCellsCollection must only cover 1 column! \nFsColumn.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsColumn.Copy \nCopy \nFsColumn.HasCellAt \nHasCellAt \nFsColumn.Item \nItem \nFsColumn.ToDenseColumn \nToDenseColumn \nFsColumn.TryItem \nTryItem \nFsColumn.Index \nIndex \nFsColumn.MaxRowIndex \nMaxRowIndex \nFsColumn.Cells \nCells \nFsColumn.MinRowIndex \nMinRowIndex \nFsColumn.copy \ncopy \nFsColumn.createAt \ncreateAt \nFsColumn.createDenseColumnOf \ncreateDenseColumnOf \nFsColumn.empty \nempty \nFsColumn.getIndex \ngetIndex \nFsColumn.hasCellAt \nhasCellAt \nFsColumn.item \nitem \nFsColumn.toDenseColumn \ntoDenseColumn \nFsColumn.tryItem \ntryItem"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#\u0060\u0060.ctor\u0060\u0060","title":"FsColumn.\u0060\u0060.ctor\u0060\u0060","content":"FsColumn.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#Copy","title":"FsColumn.Copy","content":"FsColumn.Copy \nCopy \n\n Creates a deep copy of this FsColumn.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#HasCellAt","title":"FsColumn.HasCellAt","content":"FsColumn.HasCellAt \nHasCellAt \n\n Checks if there is an FsCell at given row index.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#Item","title":"FsColumn.Item","content":"FsColumn.Item \nItem \n\n Returns the FsCell at rowIndex.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#ToDenseColumn","title":"FsColumn.ToDenseColumn","content":"FsColumn.ToDenseColumn \nToDenseColumn \n\n Transforms the FsColumn into a dense FsColumn.\n \n FsColumns are sparse by default. This means there are no FsCells present between positions with that are filled with FsCells. In dense FsColumns, such \u0022empty positions\u0022 are then filled with empty FsCells.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#TryItem","title":"FsColumn.TryItem","content":"FsColumn.TryItem \nTryItem \n\n Returns the FsCell at the given rowIndex if it exists. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#Index","title":"FsColumn.Index","content":"FsColumn.Index \nIndex \n\n The index of the FsColumn.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#MaxRowIndex","title":"FsColumn.MaxRowIndex","content":"FsColumn.MaxRowIndex \nMaxRowIndex \n\n The number of the highest row index of the FsColumn where an FsCell exists.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#Cells","title":"FsColumn.Cells","content":"FsColumn.Cells \nCells \n\n The associated FsCells.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#MinRowIndex","title":"FsColumn.MinRowIndex","content":"FsColumn.MinRowIndex \nMinRowIndex \n\n The number of the lowest row index of the FsColumn where an FsCell exists.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#copy","title":"FsColumn.copy","content":"FsColumn.copy \ncopy \n\n Returns a deep copy of a given FsColumn.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#createAt","title":"FsColumn.createAt","content":"FsColumn.createAt \ncreateAt \n\n Create an FsColumn from a given FsCellsCollection and an columnColumn.\n \nThe appropriate range of the cells (i.e. minimum colIndex and maximum colIndex) is derived from the FsCells with the matching rowIndex."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#createDenseColumnOf","title":"FsColumn.createDenseColumnOf","content":"FsColumn.createDenseColumnOf \ncreateDenseColumnOf \n\n Takes a given FsColumn and returns a new dense FsColumn from it.\n \n FsColumns are sparse by default. This means there are no FsCells present between positions with that are filled with FsCells. In dense FsColumns, such \u0022empty positions\u0022 are then filled with empty FsCells.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#empty","title":"FsColumn.empty","content":"FsColumn.empty \nempty \n\n Creates an empty FsColumn, ranging from row 0, column 0 to row 0, column (1-based).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#getIndex","title":"FsColumn.getIndex","content":"FsColumn.getIndex \ngetIndex \n\n Returns the index of the given FsColumn.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#hasCellAt","title":"FsColumn.hasCellAt","content":"FsColumn.hasCellAt \nhasCellAt \n\n Checks if there is an FsCell at given row index of a given FsColumn.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#item","title":"FsColumn.item","content":"FsColumn.item \nitem \n\n Returns the FsCell at the given rowIndex from an FsColumn.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#toDenseColumn","title":"FsColumn.toDenseColumn","content":"FsColumn.toDenseColumn \ntoDenseColumn \n\n Transforms the given FsColumn into a dense FsColumn.\n \n FsColumns are sparse by default. This means there are no FsCells present between positions with that are filled with FsCells. In dense FsColumns, such \u0022empty positions\u0022 are then filled with empty FsCells.\n \nThis is an in-place operation."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#tryItem","title":"FsColumn.tryItem","content":"FsColumn.tryItem \ntryItem \n\n Returns the FsCell at the given rowIndex if it exists in the given FsColumn. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrange.html","title":"FsRange","content":"FsRange \n \nFsRange.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsRange.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsRange.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsRange.FirstRow \nFirstRow \nFsRange.Row \nRow"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrange.html#\u0060\u0060.ctor\u0060\u0060","title":"FsRange.\u0060\u0060.ctor\u0060\u0060","content":"FsRange.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrange.html#\u0060\u0060.ctor\u0060\u0060","title":"FsRange.\u0060\u0060.ctor\u0060\u0060","content":"FsRange.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrange.html#\u0060\u0060.ctor\u0060\u0060","title":"FsRange.\u0060\u0060.ctor\u0060\u0060","content":"FsRange.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrange.html#FirstRow","title":"FsRange.FirstRow","content":"FsRange.FirstRow \nFirstRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrange.html#Row","title":"FsRange.Row","content":"FsRange.Row \nRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html","title":"FsRangeAddress","content":"FsRangeAddress \n \nFsRangeAddress.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsRangeAddress.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsRangeAddress.Copy \nCopy \nFsRangeAddress.Extend \nExtend \nFsRangeAddress.Normalize \nNormalize \nFsRangeAddress.Union \nUnion \nFsRangeAddress.LastAddress \nLastAddress \nFsRangeAddress.FirstAddress \nFirstAddress \nFsRangeAddress.Range \nRange \nFsRangeAddress.copy \ncopy"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#\u0060\u0060.ctor\u0060\u0060","title":"FsRangeAddress.\u0060\u0060.ctor\u0060\u0060","content":"FsRangeAddress.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#\u0060\u0060.ctor\u0060\u0060","title":"FsRangeAddress.\u0060\u0060.ctor\u0060\u0060","content":"FsRangeAddress.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#Copy","title":"FsRangeAddress.Copy","content":"FsRangeAddress.Copy \nCopy \n\n Creates a deep copy of this FsRangeAddress.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#Extend","title":"FsRangeAddress.Extend","content":"FsRangeAddress.Extend \nExtend \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#Normalize","title":"FsRangeAddress.Normalize","content":"FsRangeAddress.Normalize \nNormalize \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#Union","title":"FsRangeAddress.Union","content":"FsRangeAddress.Union \nUnion \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#LastAddress","title":"FsRangeAddress.LastAddress","content":"FsRangeAddress.LastAddress \nLastAddress \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#FirstAddress","title":"FsRangeAddress.FirstAddress","content":"FsRangeAddress.FirstAddress \nFirstAddress \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#Range","title":"FsRangeAddress.Range","content":"FsRangeAddress.Range \nRange \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#copy","title":"FsRangeAddress.copy","content":"FsRangeAddress.copy \ncopy \n\n Returns a deep copy of a given FsRangeAddress.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangebase.html","title":"FsRangeBase","content":"FsRangeBase \n \nFsRangeBase.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsRangeBase.Cell \nCell \nFsRangeBase.Cells \nCells \nFsRangeBase.ColumnCount \nColumnCount \nFsRangeBase.Extend \nExtend \nFsRangeBase.RowCount \nRowCount \nFsRangeBase.RangeAddress \nRangeAddress"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangebase.html#\u0060\u0060.ctor\u0060\u0060","title":"FsRangeBase.\u0060\u0060.ctor\u0060\u0060","content":"FsRangeBase.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangebase.html#Cell","title":"FsRangeBase.Cell","content":"FsRangeBase.Cell \nCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangebase.html#Cells","title":"FsRangeBase.Cells","content":"FsRangeBase.Cells \nCells \n\n Returns the FsCells of this FsRangeBase with the given FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangebase.html#ColumnCount","title":"FsRangeBase.ColumnCount","content":"FsRangeBase.ColumnCount \nColumnCount \n\n The number of columns in the FsRangeBase.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangebase.html#Extend","title":"FsRangeBase.Extend","content":"FsRangeBase.Extend \nExtend \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangebase.html#RowCount","title":"FsRangeBase.RowCount","content":"FsRangeBase.RowCount \nRowCount \n\n The number of rows in the FsRangeBase.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangebase.html#RangeAddress","title":"FsRangeBase.RangeAddress","content":"FsRangeBase.RangeAddress \nRangeAddress \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html","title":"FsRangeColumn","content":"FsRangeColumn \n \nFsRangeColumn.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsRangeColumn.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsRangeColumn.Cell \nCell \nFsRangeColumn.Cells \nCells \nFsRangeColumn.Copy \nCopy \nFsRangeColumn.FirstCell \nFirstCell \nFsRangeColumn.Index \nIndex \nFsRangeColumn.copy \ncopy \nFsRangeColumn.fromRangeAddress \nfromRangeAddress"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html#\u0060\u0060.ctor\u0060\u0060","title":"FsRangeColumn.\u0060\u0060.ctor\u0060\u0060","content":"FsRangeColumn.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html#\u0060\u0060.ctor\u0060\u0060","title":"FsRangeColumn.\u0060\u0060.ctor\u0060\u0060","content":"FsRangeColumn.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html#Cell","title":"FsRangeColumn.Cell","content":"FsRangeColumn.Cell \nCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html#Cells","title":"FsRangeColumn.Cells","content":"FsRangeColumn.Cells \nCells \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html#Copy","title":"FsRangeColumn.Copy","content":"FsRangeColumn.Copy \nCopy \n\n Creates a deep copy of this FsRangeColumn.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html#FirstCell","title":"FsRangeColumn.FirstCell","content":"FsRangeColumn.FirstCell \nFirstCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html#Index","title":"FsRangeColumn.Index","content":"FsRangeColumn.Index \nIndex \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html#copy","title":"FsRangeColumn.copy","content":"FsRangeColumn.copy \ncopy \n\n Returns a deep copy of a given FsRangeColumn.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html#fromRangeAddress","title":"FsRangeColumn.fromRangeAddress","content":"FsRangeColumn.fromRangeAddress \nfromRangeAddress \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangerow.html","title":"FsRangeRow","content":"FsRangeRow \n \nFsRangeRow.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsRangeRow.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsRangeRow.Cell \nCell \nFsRangeRow.Cells \nCells \nFsRangeRow.Index \nIndex"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangerow.html#\u0060\u0060.ctor\u0060\u0060","title":"FsRangeRow.\u0060\u0060.ctor\u0060\u0060","content":"FsRangeRow.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangerow.html#\u0060\u0060.ctor\u0060\u0060","title":"FsRangeRow.\u0060\u0060.ctor\u0060\u0060","content":"FsRangeRow.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangerow.html#Cell","title":"FsRangeRow.Cell","content":"FsRangeRow.Cell \nCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangerow.html#Cells","title":"FsRangeRow.Cells","content":"FsRangeRow.Cells \nCells \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangerow.html#Index","title":"FsRangeRow.Index","content":"FsRangeRow.Index \nIndex \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html","title":"FsRow","content":"FsRow \n\n Creates an FsRow from the given FsRangeAddress, consisting of FsCells within a given FsCellsCollection, and a styleValue.\n \nThe FsCellsCollection must only cover 1 row! \nFsRow.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsRow.Copy \nCopy \nFsRow.HasCellAt \nHasCellAt \nFsRow.InsertValueAt \nInsertValueAt \nFsRow.Item \nItem \nFsRow.ToDenseRow \nToDenseRow \nFsRow.TryItem \nTryItem \nFsRow.MinColIndex \nMinColIndex \nFsRow.Index \nIndex \nFsRow.MaxColIndex \nMaxColIndex \nFsRow.Cells \nCells \nFsRow.copy \ncopy \nFsRow.createAt \ncreateAt \nFsRow.createDenseRowOf \ncreateDenseRowOf \nFsRow.empty \nempty \nFsRow.getIndex \ngetIndex \nFsRow.hasCellAt \nhasCellAt \nFsRow.insertValueAt \ninsertValueAt \nFsRow.item \nitem \nFsRow.toDenseRow \ntoDenseRow \nFsRow.tryItem \ntryItem"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#\u0060\u0060.ctor\u0060\u0060","title":"FsRow.\u0060\u0060.ctor\u0060\u0060","content":"FsRow.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#Copy","title":"FsRow.Copy","content":"FsRow.Copy \nCopy \n\n Creates a deep copy of this FsRow.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#HasCellAt","title":"FsRow.HasCellAt","content":"FsRow.HasCellAt \nHasCellAt \n\n Checks if there is an FsCell at given column index.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#InsertValueAt","title":"FsRow.InsertValueAt","content":"FsRow.InsertValueAt \nInsertValueAt \n\n Inserts the value at columnIndex as an FsCell. If there is an FsCell at the position, this FsCells and all the ones right to it are shifted to the right.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#Item","title":"FsRow.Item","content":"FsRow.Item \nItem \n\n Returns the FsCell at columnIndex if it exists. Else creates an empty FsCell at that position.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#ToDenseRow","title":"FsRow.ToDenseRow","content":"FsRow.ToDenseRow \nToDenseRow \n\n Transforms the FsRow into a dense FsRow.\n \n FsRows are sparse by default. This means there are no FsCells present between positions with that are filled with FsCells. In dense FsRows, such \u0022empty positions\u0022 are then filled with empty FsCells.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#TryItem","title":"FsRow.TryItem","content":"FsRow.TryItem \nTryItem \n\n Returns the FsCell at the given columnIndex if it exists. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#MinColIndex","title":"FsRow.MinColIndex","content":"FsRow.MinColIndex \nMinColIndex \n\n The number of the lowest column index of the FsRow where an FsCell exists.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#Index","title":"FsRow.Index","content":"FsRow.Index \nIndex \n\n The index of the FsRow.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#MaxColIndex","title":"FsRow.MaxColIndex","content":"FsRow.MaxColIndex \nMaxColIndex \n\n The number of the highest column index of the FsRow where an FsCell exists.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#Cells","title":"FsRow.Cells","content":"FsRow.Cells \nCells \n\n The associated FsCells.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#copy","title":"FsRow.copy","content":"FsRow.copy \ncopy \n\n Returns a deep copy of a given FsRow.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#createAt","title":"FsRow.createAt","content":"FsRow.createAt \ncreateAt \n\n Creates an FsRow from a given FsCellsCollection and an rowIndex.\n \nThe appropriate range of the cells (i.e. minimum colIndex and maximum colIndex) is derived from the FsCells with the matching rowIndex."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#createDenseRowOf","title":"FsRow.createDenseRowOf","content":"FsRow.createDenseRowOf \ncreateDenseRowOf \n\n Takes a given FsRow and returns a new dense FsRow from it.\n \n FsRows are sparse by default. This means there are no FsCells present between positions with that are filled with FsCells. In dense FsRows, such \u0022empty positions\u0022 are then filled with empty FsCells.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#empty","title":"FsRow.empty","content":"FsRow.empty \nempty \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#getIndex","title":"FsRow.getIndex","content":"FsRow.getIndex \ngetIndex \n\n Returns the index of the given FsRow.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#hasCellAt","title":"FsRow.hasCellAt","content":"FsRow.hasCellAt \nhasCellAt \n\n Checks if there is an FsCell at given column index of a given FsRow.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#insertValueAt","title":"FsRow.insertValueAt","content":"FsRow.insertValueAt \ninsertValueAt \n\n Adds a value at the given row- and columnIndex to FsRow using.\n\n If a cell exists in the given position, shoves it to the right.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#item","title":"FsRow.item","content":"FsRow.item \nitem \n\n Returns the FsCell at the given columnIndex from an FsRow if it exists. Else creates an ampty FsCell at that position.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#toDenseRow","title":"FsRow.toDenseRow","content":"FsRow.toDenseRow \ntoDenseRow \n\n Transforms the given FsRow into a dense FsRow.\n \n FsRows are sparse by default. This means there are no FsCells present between positions with that are filled with FsCells. In dense FsRows, such \u0022empty positions\u0022 are then filled with empty FsCells.\n \nThis is an in-place operation."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#tryItem","title":"FsRow.tryItem","content":"FsRow.tryItem \ntryItem \n\n Returns the FsCell at the given columnIndex if it exists in the given FsRow. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html","title":"FsTable","content":"FsTable \n\n Creates an FsTable from the given name and FsRangeAddres, with totals row shown and header row shown or not, accordingly.\n \nFsTable.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsTable.AddFields \nAddFields \nFsTable.Copy \nCopy \nFsTable.Field \nField \nFsTable.GetColumns \nGetColumns \nFsTable.GetDataCellsOfColumnAt \nGetDataCellsOfColumnAt \nFsTable.GetField \nGetField \nFsTable.GetFieldAt \nGetFieldAt \nFsTable.GetFieldIndex \nGetFieldIndex \nFsTable.GetFieldNames \nGetFieldNames \nFsTable.GetFields \nGetFields \nFsTable.GetHeaderCellOfColumn \nGetHeaderCellOfColumn \nFsTable.GetHeaderCellOfColumnAt \nGetHeaderCellOfColumnAt \nFsTable.GetHeaderCellOfTableField \nGetHeaderCellOfTableField \nFsTable.GetHeaderCellOfTableFieldAt \nGetHeaderCellOfTableFieldAt \nFsTable.GetHeaderRow \nGetHeaderRow \nFsTable.GetRows \nGetRows \nFsTable.GetUniqueName \nGetUniqueName \nFsTable.HeadersRow \nHeadersRow \nFsTable.InitFields \nInitFields \nFsTable.RenameField \nRenameField \nFsTable.RescanFieldNames \nRescanFieldNames \nFsTable.RescanRange \nRescanRange \nFsTable.TryGetHeaderCellByFieldName \nTryGetHeaderCellByFieldName \nFsTable.TryGetHeaderCellOfColumn \nTryGetHeaderCellOfColumn \nFsTable.TryGetHeaderCellOfColumnAt \nTryGetHeaderCellOfColumnAt \nFsTable.TryGetHeaderCellOfTableFieldAt \nTryGetHeaderCellOfTableFieldAt \nFsTable.TryGetHeaderRow \nTryGetHeaderRow \nFsTable.Name \nName \nFsTable.ShowHeaderRow \nShowHeaderRow \nFsTable.addFields \naddFields \nFsTable.copy \ncopy \nFsTable.getDataCellsOfColumnIndexAt \ngetDataCellsOfColumnIndexAt \nFsTable.getField \ngetField \nFsTable.getHeaderCellOfColumn \ngetHeaderCellOfColumn \nFsTable.getHeaderCellOfColumnIndexAt \ngetHeaderCellOfColumnIndexAt \nFsTable.getHeaderCellOfTableField \ngetHeaderCellOfTableField \nFsTable.getHeaderCellOfTableFieldIndexAt \ngetHeaderCellOfTableFieldIndexAt \nFsTable.getUniqueNames \ngetUniqueNames \nFsTable.initFields \ninitFields \nFsTable.renameField \nrenameField \nFsTable.rescanRange \nrescanRange \nFsTable.tryGetHeaderCellByFieldName \ntryGetHeaderCellByFieldName \nFsTable.tryGetHeaderCellOfColumn \ntryGetHeaderCellOfColumn \nFsTable.tryGetHeaderCellOfColumnIndexAt \ntryGetHeaderCellOfColumnIndexAt \nFsTable.tryGetHeaderCellOfTableFieldIndexAt \ntryGetHeaderCellOfTableFieldIndexAt"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#\u0060\u0060.ctor\u0060\u0060","title":"FsTable.\u0060\u0060.ctor\u0060\u0060","content":"FsTable.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#AddFields","title":"FsTable.AddFields","content":"FsTable.AddFields \nAddFields \n\n Adds a sequence of FsTableFields to the FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#Copy","title":"FsTable.Copy","content":"FsTable.Copy \nCopy \n\n Creates a deep copy of this FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#Field","title":"FsTable.Field","content":"FsTable.Field \nField \n\n Returns the FsTableField with given name. If an FsTableField does not exist under this name in the FsTable, adds it.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetColumns","title":"FsTable.GetColumns","content":"FsTable.GetColumns \nGetColumns \n\n Returns the FsColumns from the FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetDataCellsOfColumnAt","title":"FsTable.GetDataCellsOfColumnAt","content":"FsTable.GetDataCellsOfColumnAt \nGetDataCellsOfColumnAt \n\n Returns the data cells from a given FsCellsCollection with the given colum index.\n \nColumn index must fit the FsCellsCollection, not the FsTable!"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetField","title":"FsTable.GetField","content":"FsTable.GetField \nGetField \n\n Takes a name of an FsTableField and an FsCellsCollection (belonging to the FsWorksheet of this \n FsTable) and returns the respective FsTableField.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetFieldAt","title":"FsTable.GetFieldAt","content":"FsTable.GetFieldAt \nGetFieldAt \n\n Takes the index of an FsTableField and an FsCellsCollection (belonging to the FsWorksheet of\n this FsTable) and returns the respective FsTableField.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetFieldIndex","title":"FsTable.GetFieldIndex","content":"FsTable.GetFieldIndex \nGetFieldIndex \n\n Takes a name of an FsTableField and an FsCellsCollection (belonging to the FsWorksheet of \n this FsTable) and returns the index of the respective FsTableField.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetFieldNames","title":"FsTable.GetFieldNames","content":"FsTable.GetFieldNames \nGetFieldNames \n\n Returns all fieldnames as \u0060fieldname*FsTableField\u0060 dictionary.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetFields","title":"FsTable.GetFields","content":"FsTable.GetFields \nGetFields \n\n The FsTableFields of this FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetHeaderCellOfColumn","title":"FsTable.GetHeaderCellOfColumn","content":"FsTable.GetHeaderCellOfColumn \nGetHeaderCellOfColumn \n\n Returns the header cell of a given FsRangeColumn from a given FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetHeaderCellOfColumnAt","title":"FsTable.GetHeaderCellOfColumnAt","content":"FsTable.GetHeaderCellOfColumnAt \nGetHeaderCellOfColumnAt \n\n Returns the header cell from a given FsCellsCollection with the given colum index.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetHeaderCellOfTableField","title":"FsTable.GetHeaderCellOfTableField","content":"FsTable.GetHeaderCellOfTableField \nGetHeaderCellOfTableField \n\n Returns the header cell of a given FsTableField from a given FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetHeaderCellOfTableFieldAt","title":"FsTable.GetHeaderCellOfTableFieldAt","content":"FsTable.GetHeaderCellOfTableFieldAt \nGetHeaderCellOfTableFieldAt \n\n Returns the header cell from an FsTableField with the given index using a given FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetHeaderRow","title":"FsTable.GetHeaderRow","content":"FsTable.GetHeaderRow \nGetHeaderRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetRows","title":"FsTable.GetRows","content":"FsTable.GetRows \nGetRows \n\n Returns the FsRows from the FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetUniqueName","title":"FsTable.GetUniqueName","content":"FsTable.GetUniqueName \nGetUniqueName \n\n Returns a unique name consisting of the original name and an initial offset that is raised \n if the original name with that offset is already present.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#HeadersRow","title":"FsTable.HeadersRow","content":"FsTable.HeadersRow \nHeadersRow \n\n Returns the header row as FsRangeRow. Scans for new fieldnames.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#InitFields","title":"FsTable.InitFields","content":"FsTable.InitFields \nInitFields \n\n Creates and adds FsTableFields from a sequence of field names to the FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#RenameField","title":"FsTable.RenameField","content":"FsTable.RenameField \nRenameField \n\n Renames a fieldname of the FsTable if it exists. Else fails.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#RescanFieldNames","title":"FsTable.RescanFieldNames","content":"FsTable.RescanFieldNames \nRescanFieldNames \n\n Updates the TableFields according to the range of the table and the underlying cellcollection.\n\n For this, maps over the range of the table and sets the header of the table fields to the value of the cell. If no cell value is set, the header value and the underlying cell value are set to a default value.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#RescanRange","title":"FsTable.RescanRange","content":"FsTable.RescanRange \nRescanRange \n\n Updates the FsRangeAddress of the FsTable according to the FsTableFields associated.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#TryGetHeaderCellByFieldName","title":"FsTable.TryGetHeaderCellByFieldName","content":"FsTable.TryGetHeaderCellByFieldName \nTryGetHeaderCellByFieldName \n\n Returns the header cell from an FsTableField with the given name using an FsCellsCollection in the FsTable if the cell exists.\n Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#TryGetHeaderCellOfColumn","title":"FsTable.TryGetHeaderCellOfColumn","content":"FsTable.TryGetHeaderCellOfColumn \nTryGetHeaderCellOfColumn \n\n Returns the header cell of a given FsRangeColumn from a given FsCellsCollection if the cell exists. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#TryGetHeaderCellOfColumnAt","title":"FsTable.TryGetHeaderCellOfColumnAt","content":"FsTable.TryGetHeaderCellOfColumnAt \nTryGetHeaderCellOfColumnAt \n\n Returns the header cell from a given FsCellsCollection with the given colum index if the cell exists. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#TryGetHeaderCellOfTableFieldAt","title":"FsTable.TryGetHeaderCellOfTableFieldAt","content":"FsTable.TryGetHeaderCellOfTableFieldAt \nTryGetHeaderCellOfTableFieldAt \n\n Returns the header cell from an FsTableField with the given index using a given FsCellsCollection if the cell exists.\n Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#TryGetHeaderRow","title":"FsTable.TryGetHeaderRow","content":"FsTable.TryGetHeaderRow \nTryGetHeaderRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#Name","title":"FsTable.Name","content":"FsTable.Name \nName \n\n The name of the FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#ShowHeaderRow","title":"FsTable.ShowHeaderRow","content":"FsTable.ShowHeaderRow \nShowHeaderRow \n\n Gets or sets if the header row is shown.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#addFields","title":"FsTable.addFields","content":"FsTable.addFields \naddFields \n\n Adds a sequence of FsTableFields to a given FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#copy","title":"FsTable.copy","content":"FsTable.copy \ncopy \n\n Returns a deep copy of a given FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#getDataCellsOfColumnIndexAt","title":"FsTable.getDataCellsOfColumnIndexAt","content":"FsTable.getDataCellsOfColumnIndexAt \ngetDataCellsOfColumnIndexAt \n\n Returns the data cells from a given FsCellsCollection with the given colum index in a given FsTable.\n \nColumn index must fit the FsCellsCollection, not the FsTable!"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#getField","title":"FsTable.getField","content":"FsTable.getField \ngetField \n\n Takes a name of an FsTableField and an FsCellsCollection (belonging to the FsWorksheet of this \n FsTable) and returns the respective FsTableField.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#getHeaderCellOfColumn","title":"FsTable.getHeaderCellOfColumn","content":"FsTable.getHeaderCellOfColumn \ngetHeaderCellOfColumn \n\n Returns the header cell of a given FsRangeColumn from a given FsCellsCollection in a given FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#getHeaderCellOfColumnIndexAt","title":"FsTable.getHeaderCellOfColumnIndexAt","content":"FsTable.getHeaderCellOfColumnIndexAt \ngetHeaderCellOfColumnIndexAt \n\n Returns the header cell from a given FsCellsCollection with the given colum index in a given FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#getHeaderCellOfTableField","title":"FsTable.getHeaderCellOfTableField","content":"FsTable.getHeaderCellOfTableField \ngetHeaderCellOfTableField \n\n Returns the header cell of a given FsTableField from a given FsCellsCollection in a given FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#getHeaderCellOfTableFieldIndexAt","title":"FsTable.getHeaderCellOfTableFieldIndexAt","content":"FsTable.getHeaderCellOfTableFieldIndexAt \ngetHeaderCellOfTableFieldIndexAt \n\n Returns the header cell from an FsTableField with the given index using a given FsCellsCollection in a given FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#getUniqueNames","title":"FsTable.getUniqueNames","content":"FsTable.getUniqueNames \ngetUniqueNames \n\n Returns a unique name consisting of the original name and an initial offset that is raised \n if the original name with that offset is already present.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#initFields","title":"FsTable.initFields","content":"FsTable.initFields \ninitFields \n\n Creates and adds FsTableFields from a sequence of field names to a given FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#renameField","title":"FsTable.renameField","content":"FsTable.renameField \nrenameField \n\n Renames a fieldname of the FsTable if it exists. Else fails.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#rescanRange","title":"FsTable.rescanRange","content":"FsTable.rescanRange \nrescanRange \n\n Updates the FsRangeAddress of a given FsTable according to the FsTableFields associated.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#tryGetHeaderCellByFieldName","title":"FsTable.tryGetHeaderCellByFieldName","content":"FsTable.tryGetHeaderCellByFieldName \ntryGetHeaderCellByFieldName \n\n Returns the header cell from an FsTableField with the given name using an FsCellsCollection in a given FsTable if the cell exists.\n Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#tryGetHeaderCellOfColumn","title":"FsTable.tryGetHeaderCellOfColumn","content":"FsTable.tryGetHeaderCellOfColumn \ntryGetHeaderCellOfColumn \n\n Returns the header cell of a given FsRangeColumn from a given FsCellsCollection in a given FsTable if the cell exists.\n Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#tryGetHeaderCellOfColumnIndexAt","title":"FsTable.tryGetHeaderCellOfColumnIndexAt","content":"FsTable.tryGetHeaderCellOfColumnIndexAt \ntryGetHeaderCellOfColumnIndexAt \n\n Returns the header cell from a given FsCellsCollection with the given column index in a given FsTable if the cell exists. Else\n returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#tryGetHeaderCellOfTableFieldIndexAt","title":"FsTable.tryGetHeaderCellOfTableFieldIndexAt","content":"FsTable.tryGetHeaderCellOfTableFieldIndexAt \ntryGetHeaderCellOfTableFieldIndexAt \n\n Returns the header cell from an FsTableField with the given index using a given FsCellsCollection if the cell exists\n in a given FsTable. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html","title":"FsTableField","content":"FsTableField \n\n Creates an FsTableFiled with given name, index, FsRangeColumn, totalRowLabel, and the totalsRowFunction.\n \nFsTableField.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsTableField.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsTableField.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsTableField.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsTableField.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsTableField.Copy \nCopy \nFsTableField.DataCells \nDataCells \nFsTableField.HeaderCell \nHeaderCell \nFsTableField.SetName \nSetName \nFsTableField.Name \nName \nFsTableField.Index \nIndex \nFsTableField.Column \nColumn \nFsTableField.copy \ncopy \nFsTableField.getDataCells \ngetDataCells \nFsTableField.getHeaderCell \ngetHeaderCell \nFsTableField.setName \nsetName"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#\u0060\u0060.ctor\u0060\u0060","title":"FsTableField.\u0060\u0060.ctor\u0060\u0060","content":"FsTableField.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n\n Creates an FsTableField with the given name, index, and FsRangeColumn.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#\u0060\u0060.ctor\u0060\u0060","title":"FsTableField.\u0060\u0060.ctor\u0060\u0060","content":"FsTableField.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n\n Creates an FsTableField with the given name and index.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#\u0060\u0060.ctor\u0060\u0060","title":"FsTableField.\u0060\u0060.ctor\u0060\u0060","content":"FsTableField.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n\n Creates an FsTableField with the given name.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#\u0060\u0060.ctor\u0060\u0060","title":"FsTableField.\u0060\u0060.ctor\u0060\u0060","content":"FsTableField.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n\n Creates an empty FsTableField.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#\u0060\u0060.ctor\u0060\u0060","title":"FsTableField.\u0060\u0060.ctor\u0060\u0060","content":"FsTableField.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#Copy","title":"FsTableField.Copy","content":"FsTableField.Copy \nCopy \n\n Creates a deep copy of this FsTableField.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#DataCells","title":"FsTableField.DataCells","content":"FsTableField.DataCells \nDataCells \n\n Gets the collection of data cells for this FsTableField. Excludes the header and footer cells.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#HeaderCell","title":"FsTableField.HeaderCell","content":"FsTableField.HeaderCell \nHeaderCell \n\n Returns the header cell (taken from a given FsCellsCollection) for the FsTableField if \u0060showHeaderRow\u0060 is true. Else fails.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#SetName","title":"FsTableField.SetName","content":"FsTableField.SetName \nSetName \n\n Sets the name of the FsTableField. If \u0060showHeaderRow\u0060 is true, takes the respective FsCellsCollection and renames the header cell \n according to the name of the FsTableField.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#Name","title":"FsTableField.Name","content":"FsTableField.Name \nName \n\n The name of this FsTableField.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#Index","title":"FsTableField.Index","content":"FsTableField.Index \nIndex \n\n Gets or sets the 0-based index of the FsTableField inside the associated FsTable. \n Sets the associated FsRangeColumn\u0027s column index accordingly.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#Column","title":"FsTableField.Column","content":"FsTableField.Column \nColumn \n\n Gets or sets the FsRangeColumn of this FsTableField.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#copy","title":"FsTableField.copy","content":"FsTableField.copy \ncopy \n\n Returns a deep copy of a given FsTableField.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#getDataCells","title":"FsTableField.getDataCells","content":"FsTableField.getDataCells \ngetDataCells \n\n Gets the collection of data cells for a given FsTableField. Excludes the header and footer cells.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#getHeaderCell","title":"FsTableField.getHeaderCell","content":"FsTableField.getHeaderCell \ngetHeaderCell \n\n Returns the header cell (taken from an FsCellsCollection) for a given FsTableField if \u0060showHeaderRow\u0060 is true. Else fails.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#setName","title":"FsTableField.setName","content":"FsTableField.setName \nsetName \n\n Sets the name of a given FsTableField. If \u0060showHeaderRow\u0060 is true, takes the respective FsCellsCollection and renames the header cell \n according to the name of the FsTableField.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablerow.html","title":"FsTableRow","content":"FsTableRow \n \nFsTableRow.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablerow.html#\u0060\u0060.ctor\u0060\u0060","title":"FsTableRow.\u0060\u0060.ctor\u0060\u0060","content":"FsTableRow.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html","title":"FsWorkbook","content":"FsWorkbook \n\n Creates an empty FsWorkbook.\n \nFsWorkbook.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsWorkbook.AddWorksheet \nAddWorksheet \nFsWorkbook.AddWorksheets \nAddWorksheets \nFsWorkbook.Copy \nCopy \nFsWorkbook.GetTables \nGetTables \nFsWorkbook.GetWorksheetAt \nGetWorksheetAt \nFsWorkbook.GetWorksheetByName \nGetWorksheetByName \nFsWorkbook.GetWorksheets \nGetWorksheets \nFsWorkbook.InitWorksheet \nInitWorksheet \nFsWorkbook.RemoveWorksheet \nRemoveWorksheet \nFsWorkbook.TryGetWorksheetAt \nTryGetWorksheetAt \nFsWorkbook.TryGetWorksheetByName \nTryGetWorksheetByName \nFsWorkbook.addWorksheet \naddWorksheet \nFsWorkbook.addWorksheets \naddWorksheets \nFsWorkbook.copy \ncopy \nFsWorkbook.getTables \ngetTables \nFsWorkbook.getWorksheetAt \ngetWorksheetAt \nFsWorkbook.getWorksheetByName \ngetWorksheetByName \nFsWorkbook.getWorksheets \ngetWorksheets \nFsWorkbook.initWorksheet \ninitWorksheet \nFsWorkbook.removeWorksheet \nremoveWorksheet \nFsWorkbook.tryGetWorksheetAt \ntryGetWorksheetAt \nFsWorkbook.tryGetWorksheetByName \ntryGetWorksheetByName"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#\u0060\u0060.ctor\u0060\u0060","title":"FsWorkbook.\u0060\u0060.ctor\u0060\u0060","content":"FsWorkbook.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#AddWorksheet","title":"FsWorkbook.AddWorksheet","content":"FsWorkbook.AddWorksheet \nAddWorksheet \n\n Adds a given FsWorksheet to the FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#AddWorksheets","title":"FsWorkbook.AddWorksheets","content":"FsWorkbook.AddWorksheets \nAddWorksheets \n\n Adds a collection of FsWorksheets to the FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#Copy","title":"FsWorkbook.Copy","content":"FsWorkbook.Copy \nCopy \n\n Creates a deep copy of this FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#GetTables","title":"FsWorkbook.GetTables","content":"FsWorkbook.GetTables \nGetTables \n\n Returns all FsTables from the FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#GetWorksheetAt","title":"FsWorkbook.GetWorksheetAt","content":"FsWorkbook.GetWorksheetAt \nGetWorksheetAt \n\n Returns the FsWorksheet with the given 1 based index.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#GetWorksheetByName","title":"FsWorkbook.GetWorksheetByName","content":"FsWorkbook.GetWorksheetByName \nGetWorksheetByName \n\n Returns the FsWorksheet with the given name.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#GetWorksheets","title":"FsWorkbook.GetWorksheets","content":"FsWorkbook.GetWorksheets \nGetWorksheets \n\n Returns all FsWorksheets.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#InitWorksheet","title":"FsWorkbook.InitWorksheet","content":"FsWorkbook.InitWorksheet \nInitWorksheet \n\n Creates an empty FsWorksheet with given name and adds it to the FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#RemoveWorksheet","title":"FsWorkbook.RemoveWorksheet","content":"FsWorkbook.RemoveWorksheet \nRemoveWorksheet \n\n Removes an FsWorksheet with given name.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#TryGetWorksheetAt","title":"FsWorkbook.TryGetWorksheetAt","content":"FsWorkbook.TryGetWorksheetAt \nTryGetWorksheetAt \n\n Returns the FsWorksheet with the given 1 based index if it exists. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#TryGetWorksheetByName","title":"FsWorkbook.TryGetWorksheetByName","content":"FsWorkbook.TryGetWorksheetByName \nTryGetWorksheetByName \n\n Returns the FsWorksheet with the given name if it exists in the FsWorkbook. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#addWorksheet","title":"FsWorkbook.addWorksheet","content":"FsWorkbook.addWorksheet \naddWorksheet \n\n Adds an FsWorksheet to an FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#addWorksheets","title":"FsWorkbook.addWorksheets","content":"FsWorkbook.addWorksheets \naddWorksheets \n\n Adds a collection of FsWorksheets to an FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#copy","title":"FsWorkbook.copy","content":"FsWorkbook.copy \ncopy \n\n Returns a deep copy of a given FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#getTables","title":"FsWorkbook.getTables","content":"FsWorkbook.getTables \ngetTables \n\n Returns all FsTables from an FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#getWorksheetAt","title":"FsWorkbook.getWorksheetAt","content":"FsWorkbook.getWorksheetAt \ngetWorksheetAt \n\n Returns the FsWorksheet with the given the given 1 based indexk.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#getWorksheetByName","title":"FsWorkbook.getWorksheetByName","content":"FsWorkbook.getWorksheetByName \ngetWorksheetByName \n\n Returns the FsWorksheet with the given name from an FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#getWorksheets","title":"FsWorkbook.getWorksheets","content":"FsWorkbook.getWorksheets \ngetWorksheets \n\n Returns all FsWorksheets.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#initWorksheet","title":"FsWorkbook.initWorksheet","content":"FsWorkbook.initWorksheet \ninitWorksheet \n\n Creates an empty FsWorksheet with given name and adds it to the FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#removeWorksheet","title":"FsWorkbook.removeWorksheet","content":"FsWorkbook.removeWorksheet \nremoveWorksheet \n\n Removes an FsWorksheet with given name from an FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#tryGetWorksheetAt","title":"FsWorkbook.tryGetWorksheetAt","content":"FsWorkbook.tryGetWorksheetAt \ntryGetWorksheetAt \n\n Returns the FsWorksheet with the given 1 based index if it exists in a given FsWorkbook. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#tryGetWorksheetByName","title":"FsWorkbook.tryGetWorksheetByName","content":"FsWorkbook.tryGetWorksheetByName \ntryGetWorksheetByName \n\n Returns the FsWorksheet with the given name if it exists in a given FsWorkbook. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html","title":"FsWorksheet","content":"FsWorksheet \n\n Creates an FsWorksheet with the given name, FsRows, FsTables, and FsCellsCollection.\n \nFsWorksheet.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsWorksheet.AddCell \nAddCell \nFsWorksheet.AddCells \nAddCells \nFsWorksheet.AddTable \nAddTable \nFsWorksheet.AddTables \nAddTables \nFsWorksheet.Column \nColumn \nFsWorksheet.ColumnWithRange \nColumnWithRange \nFsWorksheet.ContainsRowAt \nContainsRowAt \nFsWorksheet.Copy \nCopy \nFsWorksheet.GetCellAt \nGetCellAt \nFsWorksheet.GetMaxRowIndex \nGetMaxRowIndex \nFsWorksheet.GetRowValuesAt \nGetRowValuesAt \nFsWorksheet.InsertBefore \nInsertBefore \nFsWorksheet.InsertValueAt \nInsertValueAt \nFsWorksheet.InsertValueAt \nInsertValueAt \nFsWorksheet.MapRowsInPlace \nMapRowsInPlace \nFsWorksheet.RemoveCellAt \nRemoveCellAt \nFsWorksheet.RemoveRowAt \nRemoveRowAt \nFsWorksheet.RemoveValueAt \nRemoveValueAt \nFsWorksheet.RescanRows \nRescanRows \nFsWorksheet.Row \nRow \nFsWorksheet.RowWithRange \nRowWithRange \nFsWorksheet.SetValueAt \nSetValueAt \nFsWorksheet.SortRows \nSortRows \nFsWorksheet.Table \nTable \nFsWorksheet.TryGetCellAt \nTryGetCellAt \nFsWorksheet.TryGetRowValuesAt \nTryGetRowValuesAt \nFsWorksheet.TryRemoveAt \nTryRemoveAt \nFsWorksheet.TryRemoveValueAt \nTryRemoveValueAt \nFsWorksheet.CellCollection \nCellCollection \nFsWorksheet.Columns \nColumns \nFsWorksheet.Name \nName \nFsWorksheet.Tables \nTables \nFsWorksheet.Rows \nRows \nFsWorksheet.addCell \naddCell \nFsWorksheet.addCells \naddCells \nFsWorksheet.addTable \naddTable \nFsWorksheet.addTables \naddTables \nFsWorksheet.appendRow \nappendRow \nFsWorksheet.containsRowAt \ncontainsRowAt \nFsWorksheet.copy \ncopy \nFsWorksheet.countRows \ncountRows \nFsWorksheet.getCellAt \ngetCellAt \nFsWorksheet.getColumnAt \ngetColumnAt \nFsWorksheet.getColumns \ngetColumns \nFsWorksheet.getMaxRowIndex \ngetMaxRowIndex \nFsWorksheet.getRowAt \ngetRowAt \nFsWorksheet.getRowValuesAt \ngetRowValuesAt \nFsWorksheet.getRows \ngetRows \nFsWorksheet.getTableByName \ngetTableByName \nFsWorksheet.init \ninit \nFsWorksheet.insertBefore \ninsertBefore \nFsWorksheet.insertValueAt \ninsertValueAt \nFsWorksheet.mapRowsInPlace \nmapRowsInPlace \nFsWorksheet.removeCellAt \nremoveCellAt \nFsWorksheet.removeRowAt \nremoveRowAt \nFsWorksheet.removeValueAt \nremoveValueAt \nFsWorksheet.setValueAt \nsetValueAt \nFsWorksheet.tryGetCellAt \ntryGetCellAt \nFsWorksheet.tryGetColumnAt \ntryGetColumnAt \nFsWorksheet.tryGetRowAfter \ntryGetRowAfter \nFsWorksheet.tryGetRowAt \ntryGetRowAt \nFsWorksheet.tryGetRowValuesAt \ntryGetRowValuesAt \nFsWorksheet.tryGetTableByName \ntryGetTableByName \nFsWorksheet.tryRemoveAt \ntryRemoveAt \nFsWorksheet.tryRemoveValueAt \ntryRemoveValueAt"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#\u0060\u0060.ctor\u0060\u0060","title":"FsWorksheet.\u0060\u0060.ctor\u0060\u0060","content":"FsWorksheet.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#AddCell","title":"FsWorksheet.AddCell","content":"FsWorksheet.AddCell \nAddCell \n\n Adds a FsCell to the FsWorksheet. !Exception if cell address already exists!\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#AddCells","title":"FsWorksheet.AddCells","content":"FsWorksheet.AddCells \nAddCells \n\n Adds a sequence of FsCells to the FsWorksheet. !Exception if cell address already exists!\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#AddTable","title":"FsWorksheet.AddTable","content":"FsWorksheet.AddTable \nAddTable \n\n Adds an FsTable to the FsWorksheet if an FsTable with the same name is not already attached.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#AddTables","title":"FsWorksheet.AddTables","content":"FsWorksheet.AddTables \nAddTables \n\n Adds a list of FsTables to the FsWorksheet. All FsTables with a name already present in the FsWorksheet are not attached.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#Column","title":"FsWorksheet.Column","content":"FsWorksheet.Column \nColumn \n\n Returns the FsColumn at the given index. If it does not exist, it is created and appended first.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#ColumnWithRange","title":"FsWorksheet.ColumnWithRange","content":"FsWorksheet.ColumnWithRange \nColumnWithRange \n\n Returns the FsColumn at the given FsRangeAddress. If it does not exist, it is created and appended first.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#ContainsRowAt","title":"FsWorksheet.ContainsRowAt","content":"FsWorksheet.ContainsRowAt \nContainsRowAt \n\n Returns true if the FsWorksheet contains an FsRow with the given rowIndex.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#Copy","title":"FsWorksheet.Copy","content":"FsWorksheet.Copy \nCopy \n\n Returns a copy of the FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#GetCellAt","title":"FsWorksheet.GetCellAt","content":"FsWorksheet.GetCellAt \nGetCellAt \n\n Returns the FsCell at the given row- and column index. Index is 1 based!\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#GetMaxRowIndex","title":"FsWorksheet.GetMaxRowIndex","content":"FsWorksheet.GetMaxRowIndex \nGetMaxRowIndex \n\n Returns the highest index of any FsRow.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#GetRowValuesAt","title":"FsWorksheet.GetRowValuesAt","content":"FsWorksheet.GetRowValuesAt \nGetRowValuesAt \n\n Gets the string values of the FsRow at the given 1-based rowIndex.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#InsertBefore","title":"FsWorksheet.InsertBefore","content":"FsWorksheet.InsertBefore \nInsertBefore \n\n Inserts an FsRow into the FsWorksheet before a reference FsRow.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#InsertValueAt","title":"FsWorksheet.InsertValueAt","content":"FsWorksheet.InsertValueAt \nInsertValueAt \n\n Adds a value at the given row- and columnIndex to the FsWorksheet.\n\n If a cell exists at the given postion, it is shoved to the right.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#InsertValueAt","title":"FsWorksheet.InsertValueAt","content":"FsWorksheet.InsertValueAt \nInsertValueAt \n\n Adds a value at the given row- and columnIndex to the FsWorksheet.\n\n If a cell exists at the given postion, it is shoved to the right.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#MapRowsInPlace","title":"FsWorksheet.MapRowsInPlace","content":"FsWorksheet.MapRowsInPlace \nMapRowsInPlace \n\n Applies function f to all FsRows and returns the modified FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#RemoveCellAt","title":"FsWorksheet.RemoveCellAt","content":"FsWorksheet.RemoveCellAt \nRemoveCellAt \n\n Removes the value at the given row- and columnIndex from the FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#RemoveRowAt","title":"FsWorksheet.RemoveRowAt","content":"FsWorksheet.RemoveRowAt \nRemoveRowAt \n\n Removes the FsRow at the given rowIndex.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#RemoveValueAt","title":"FsWorksheet.RemoveValueAt","content":"FsWorksheet.RemoveValueAt \nRemoveValueAt \n\n Removes the value of an FsCell at given row- and columnIndex from the FsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#RescanRows","title":"FsWorksheet.RescanRows","content":"FsWorksheet.RescanRows \nRescanRows \n\n Checks the cell collection and recreate the whole set of rows, so that all cells are placed in a row\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#Row","title":"FsWorksheet.Row","content":"FsWorksheet.Row \nRow \n\n Returns the FsRow at the given index. If it does not exist, it is created and appended first.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#RowWithRange","title":"FsWorksheet.RowWithRange","content":"FsWorksheet.RowWithRange \nRowWithRange \n\n Returns the FsRow at the given FsRangeAddress. If it does not exist, it is created and appended first.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#SetValueAt","title":"FsWorksheet.SetValueAt","content":"FsWorksheet.SetValueAt \nSetValueAt \n\n Adds a value at the given row- and columnIndex.\n\n If an FsCell exists at the given position, overwrites it.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#SortRows","title":"FsWorksheet.SortRows","content":"FsWorksheet.SortRows \nSortRows \n\n Sorts the FsRows by their rowIndex.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#Table","title":"FsWorksheet.Table","content":"FsWorksheet.Table \nTable \n\n Returns the FsTable with the given tableName, rangeAddress, and showHeaderRow parameters. If it does not exist yet, it gets created and appended first.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#TryGetCellAt","title":"FsWorksheet.TryGetCellAt","content":"FsWorksheet.TryGetCellAt \nTryGetCellAt \n\n Returns the FsCell at the given row- and columnIndex if the FsCell exists, else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#TryGetRowValuesAt","title":"FsWorksheet.TryGetRowValuesAt","content":"FsWorksheet.TryGetRowValuesAt \nTryGetRowValuesAt \n\n Gets the string values at the given 1-based rowIndex of the FsRow if it exists, else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#TryRemoveAt","title":"FsWorksheet.TryRemoveAt","content":"FsWorksheet.TryRemoveAt \nTryRemoveAt \n\n Removes the FsRow at a given rowIndex of the FsWorksheet if the FsRow exists.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#TryRemoveValueAt","title":"FsWorksheet.TryRemoveValueAt","content":"FsWorksheet.TryRemoveValueAt \nTryRemoveValueAt \n\n Removes the value of an FsCell at given row- and columnIndex if it exists from the FsCollection.\n \nDoes nothing if the row or column of given index does not exist."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#CellCollection","title":"FsWorksheet.CellCollection","content":"FsWorksheet.CellCollection \nCellCollection \n\n The FsCellCollection of the FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#Columns","title":"FsWorksheet.Columns","content":"FsWorksheet.Columns \nColumns \n\n The FsColumns of the FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#Name","title":"FsWorksheet.Name","content":"FsWorksheet.Name \nName \n\n The name of the FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#Tables","title":"FsWorksheet.Tables","content":"FsWorksheet.Tables \nTables \n\n The FsTables of the FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#Rows","title":"FsWorksheet.Rows","content":"FsWorksheet.Rows \nRows \n\n The FsRows of the FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#addCell","title":"FsWorksheet.addCell","content":"FsWorksheet.addCell \naddCell \n\n Adds a FsCell to the FsWorksheet. !Exception if cell address already exists!\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#addCells","title":"FsWorksheet.addCells","content":"FsWorksheet.addCells \naddCells \n\n Adds a sequence of FsCells to the FsWorksheet. !Exception if cell address already exists!\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#addTable","title":"FsWorksheet.addTable","content":"FsWorksheet.addTable \naddTable \n\n Adds an FsTable to the FsWorksheet if an FsTable with the same name is not already attached.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#addTables","title":"FsWorksheet.addTables","content":"FsWorksheet.addTables \naddTables \n\n Adds a list of FsTables to an FsWorksheet. All FsTables with a name already present in the FsWorksheet are not attached.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#appendRow","title":"FsWorksheet.appendRow","content":"FsWorksheet.appendRow \nappendRow \n\n Appends an FsRow to an FsWorksheet if the rowIndex is not already taken.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#containsRowAt","title":"FsWorksheet.containsRowAt","content":"FsWorksheet.containsRowAt \ncontainsRowAt \n\n Returns true if the FsWorksheet contains an FsRow with the given rowIndex.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#copy","title":"FsWorksheet.copy","content":"FsWorksheet.copy \ncopy \n\n Returns a copy of a given FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#countRows","title":"FsWorksheet.countRows","content":"FsWorksheet.countRows \ncountRows \n\n Returns the number of FsRows contained in the FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#getCellAt","title":"FsWorksheet.getCellAt","content":"FsWorksheet.getCellAt \ngetCellAt \n\n Returns the FsCell at the given row- and columnIndex of a given FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#getColumnAt","title":"FsWorksheet.getColumnAt","content":"FsWorksheet.getColumnAt \ngetColumnAt \n\n Returns the FsColumn at the given columnIndex of an FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#getColumns","title":"FsWorksheet.getColumns","content":"FsWorksheet.getColumns \ngetColumns \n\n Returns the FsColumns of a given FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#getMaxRowIndex","title":"FsWorksheet.getMaxRowIndex","content":"FsWorksheet.getMaxRowIndex \ngetMaxRowIndex \n\n Returns the highest index of any FsRow in a given FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#getRowAt","title":"FsWorksheet.getRowAt","content":"FsWorksheet.getRowAt \ngetRowAt \n\n Returns the FsRow at the given rowIndex of an FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#getRowValuesAt","title":"FsWorksheet.getRowValuesAt","content":"FsWorksheet.getRowValuesAt \ngetRowValuesAt \n\n Gets the string values of the FsRow at the given 1-based rowIndex of a given FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#getRows","title":"FsWorksheet.getRows","content":"FsWorksheet.getRows \ngetRows \n\n Returns the FsRows of a given FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#getTableByName","title":"FsWorksheet.getTableByName","content":"FsWorksheet.getTableByName \ngetTableByName \n\n Returns the FsTable of the given name from an FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#init","title":"FsWorksheet.init","content":"FsWorksheet.init \ninit \n\n Creates an empty FsWorksheet with the given name.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#insertBefore","title":"FsWorksheet.insertBefore","content":"FsWorksheet.insertBefore \ninsertBefore \n\n Inserts an FsRow into the FsWorksheet before a reference FsRow.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#insertValueAt","title":"FsWorksheet.insertValueAt","content":"FsWorksheet.insertValueAt \ninsertValueAt \n\n Adds a value at the given row- and columnIndex to a given FsWorksheet.\n\n If an FsCell exists at the given position, it is shoved to the right.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#mapRowsInPlace","title":"FsWorksheet.mapRowsInPlace","content":"FsWorksheet.mapRowsInPlace \nmapRowsInPlace \n\n Applies function f in a given FsWorksheet to all FsRows and returns the modified FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#removeCellAt","title":"FsWorksheet.removeCellAt","content":"FsWorksheet.removeCellAt \nremoveCellAt \n\n Removes the value at the given row- and columnIndex from an FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#removeRowAt","title":"FsWorksheet.removeRowAt","content":"FsWorksheet.removeRowAt \nremoveRowAt \n\n Removes the FsRow at a given rowIndex of an FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#removeValueAt","title":"FsWorksheet.removeValueAt","content":"FsWorksheet.removeValueAt \nremoveValueAt \n\n Removes the value of an FsCell at given row- and columnIndex from the FsCollection of a given FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#setValueAt","title":"FsWorksheet.setValueAt","content":"FsWorksheet.setValueAt \nsetValueAt \n\n Adds a value at the given row- and columnIndex of a given FsWorksheet.\n\n If an FsCell exists at the given position, it is overwritten.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#tryGetCellAt","title":"FsWorksheet.tryGetCellAt","content":"FsWorksheet.tryGetCellAt \ntryGetCellAt \n\n Returns the FsCell at the given row- and columnIndex of a given FsWorksheet if the FsCell exists, else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#tryGetColumnAt","title":"FsWorksheet.tryGetColumnAt","content":"FsWorksheet.tryGetColumnAt \ntryGetColumnAt \n\n Returns the FsColumn at the given columnIndex of an FsWorksheet if it exists, else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#tryGetRowAfter","title":"FsWorksheet.tryGetRowAfter","content":"FsWorksheet.tryGetRowAfter \ntryGetRowAfter \n\n Returns the FsRow matching or exceeding the given rowIndex if it exists, else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#tryGetRowAt","title":"FsWorksheet.tryGetRowAt","content":"FsWorksheet.tryGetRowAt \ntryGetRowAt \n\n Returns the FsRow at the given rowIndex of an FsWorksheet if it exists, else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#tryGetRowValuesAt","title":"FsWorksheet.tryGetRowValuesAt","content":"FsWorksheet.tryGetRowValuesAt \ntryGetRowValuesAt \n\n Takes an FsWorksheet and gets the string values at the given 1-based rowIndex of the FsRow if it exists, else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#tryGetTableByName","title":"FsWorksheet.tryGetTableByName","content":"FsWorksheet.tryGetTableByName \ntryGetTableByName \n\n Returns the FsTable of the given name from an FsWorksheet if it exists. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#tryRemoveAt","title":"FsWorksheet.tryRemoveAt","content":"FsWorksheet.tryRemoveAt \ntryRemoveAt \n\n Removes the FsRow at a given rowIndex of an FsWorksheet if the FsRow exists.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#tryRemoveValueAt","title":"FsWorksheet.tryRemoveValueAt","content":"FsWorksheet.tryRemoveValueAt \ntryRemoveValueAt \n\n Removes the value of an FsCell at given row- and columnIndex if it exists from the FsCollection of a given FsWorksheet.\n \nDoes nothing if the row or column of given index does not exist."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html","title":"FsExtensions","content":"FsExtensions \n \nFsExtensions.ToSparseRow \nToSparseRow \nFsExtensions.ToSparseTable \nToSparseTable \nFsExtensions.ToTableString \nToTableString \nFsExtensions.ToCsvStream \nToCsvStream \nFsExtensions.ToCsvBytes \nToCsvBytes \nFsExtensions.ToCsvFile \nToCsvFile \nFsExtensions.toCsvStream \ntoCsvStream \nFsExtensions.toCsvBytes \ntoCsvBytes \nFsExtensions.toCsvFile \ntoCsvFile"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#ToSparseRow","title":"FsExtensions.ToSparseRow","content":"FsExtensions.ToSparseRow \nToSparseRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#ToSparseTable","title":"FsExtensions.ToSparseTable","content":"FsExtensions.ToSparseTable \nToSparseTable \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#ToTableString","title":"FsExtensions.ToTableString","content":"FsExtensions.ToTableString \nToTableString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#ToCsvStream","title":"FsExtensions.ToCsvStream","content":"FsExtensions.ToCsvStream \nToCsvStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#ToCsvBytes","title":"FsExtensions.ToCsvBytes","content":"FsExtensions.ToCsvBytes \nToCsvBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#ToCsvFile","title":"FsExtensions.ToCsvFile","content":"FsExtensions.ToCsvFile \nToCsvFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#toCsvStream","title":"FsExtensions.toCsvStream","content":"FsExtensions.toCsvStream \ntoCsvStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#toCsvBytes","title":"FsExtensions.toCsvBytes","content":"FsExtensions.toCsvBytes \ntoCsvBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#toCsvFile","title":"FsExtensions.toCsvFile","content":"FsExtensions.toCsvFile \ntoCsvFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-writer.html","title":"Writer","content":"Writer \n \nWriter.toCsvBytes \ntoCsvBytes \nWriter.toCsvFile \ntoCsvFile \nWriter.toCsvStream \ntoCsvStream"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-writer.html#toCsvBytes","title":"Writer.toCsvBytes","content":"Writer.toCsvBytes \ntoCsvBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-writer.html#toCsvFile","title":"Writer.toCsvFile","content":"Writer.toCsvFile \ntoCsvFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-writer.html#toCsvStream","title":"Writer.toCsvStream","content":"Writer.toCsvStream \ntoCsvStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression.html","title":"Expression","content":"Expression \n \nExpression.ExpressionSource\u003C\u0027T\u003E \nExpressionSource\u003C\u0027T\u003E \nExpression.OptionalSource\u003C\u0027T\u003E \nOptionalSource\u003C\u0027T\u003E \nExpression.RequiredSource\u003C\u0027T\u003E \nRequiredSource\u003C\u0027T\u003E \nExpression.eval \neval"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression.html#eval","title":"Expression.eval","content":"Expression.eval \neval \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression-expressionsource-1.html","title":"ExpressionSource\u003C\u0027T\u003E","content":"ExpressionSource\u003C\u0027T\u003E \n \nExpressionSource\u003C\u0027T\u003E.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nExpressionSource\u003C\u0027T\u003E.Source \nSource"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression-expressionsource-1.html#\u0060\u0060.ctor\u0060\u0060","title":"ExpressionSource\u003C\u0027T\u003E.\u0060\u0060.ctor\u0060\u0060","content":"ExpressionSource\u003C\u0027T\u003E.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression-expressionsource-1.html#Source","title":"ExpressionSource\u003C\u0027T\u003E.Source","content":"ExpressionSource\u003C\u0027T\u003E.Source \nSource \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression-optionalsource-1.html","title":"OptionalSource\u003C\u0027T\u003E","content":"OptionalSource\u003C\u0027T\u003E \n \nOptionalSource\u003C\u0027T\u003E.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nOptionalSource\u003C\u0027T\u003E.Source \nSource"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression-optionalsource-1.html#\u0060\u0060.ctor\u0060\u0060","title":"OptionalSource\u003C\u0027T\u003E.\u0060\u0060.ctor\u0060\u0060","content":"OptionalSource\u003C\u0027T\u003E.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression-optionalsource-1.html#Source","title":"OptionalSource\u003C\u0027T\u003E.Source","content":"OptionalSource\u003C\u0027T\u003E.Source \nSource \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression-requiredsource-1.html","title":"RequiredSource\u003C\u0027T\u003E","content":"RequiredSource\u003C\u0027T\u003E \n \nRequiredSource\u003C\u0027T\u003E.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nRequiredSource\u003C\u0027T\u003E.Source \nSource"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression-requiredsource-1.html#\u0060\u0060.ctor\u0060\u0060","title":"RequiredSource\u003C\u0027T\u003E.\u0060\u0060.ctor\u0060\u0060","content":"RequiredSource\u003C\u0027T\u003E.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression-requiredsource-1.html#Source","title":"RequiredSource\u003C\u0027T\u003E.Source","content":"RequiredSource\u003C\u0027T\u003E.Source \nSource \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-messages.html","title":"Messages","content":"Messages \n \nMessages.format \nformat \nMessages.fail \nfail"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-messages.html#format","title":"Messages.format","content":"Messages.format \nformat \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-messages.html#fail","title":"Messages.fail","content":"Messages.fail \nfail \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html","title":"Operators","content":"Operators \n \nOperators.parseExpression \nparseExpression \nOperators.parseOption \nparseOption \nOperators.parseResult \nparseResult \nOperators.parseAny \nparseAny \nOperators.(~\u002B.) \n(~\u002B.) \nOperators.(~-.) \n(~-.) \nOperators.(\u002B.) \n(\u002B.) \nOperators.(-.) \n(-.) \nOperators.optional \noptional \nOperators.required \nrequired"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#parseExpression","title":"Operators.parseExpression","content":"Operators.parseExpression \nparseExpression \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#parseOption","title":"Operators.parseOption","content":"Operators.parseOption \nparseOption \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#parseResult","title":"Operators.parseResult","content":"Operators.parseResult \nparseResult \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#parseAny","title":"Operators.parseAny","content":"Operators.parseAny \nparseAny \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#(~\u002B.)","title":"Operators.(~\u002B.)","content":"Operators.(~\u002B.) \n(~\u002B.) \n\n Required value operator\n\n If expression does fail, returns a missing required value\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#(~-.)","title":"Operators.(~-.)","content":"Operators.(~-.) \n(~-.) \n\n Optional value operator\n\n If expression does fail, returns a missing optional value\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#(\u002B.)","title":"Operators.(\u002B.)","content":"Operators.(\u002B.) \n(\u002B.) \n\n Required value operator\n\n If expression does fail, returns a missing required value\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#(-.)","title":"Operators.(-.)","content":"Operators.(-.) \n(-.) \n\n Optional value operator\n\n If expression does fail, returns a missing optional value\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#optional","title":"Operators.optional","content":"Operators.optional \noptional \n\n Optional operators for cell, row, column and sheet expressions\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#required","title":"Operators.required","content":"Operators.required \nrequired \n\n Required operators for cell, row, column and sheet expressions\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentityextensions.html","title":"SheetEntityExtensions","content":"SheetEntityExtensions \n \nSheetEntityExtensions.Value \nValue \nSheetEntityExtensions.Value \nValue"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentityextensions.html#Value","title":"SheetEntityExtensions.Value","content":"SheetEntityExtensions.Value \nValue \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentityextensions.html#Value","title":"SheetEntityExtensions.Value","content":"SheetEntityExtensions.Value \nValue \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-transform.html","title":"Transform","content":"Transform \n \nTransform.splitRowsAndColumns \nsplitRowsAndColumns \nTransform.Parse \nParse"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-transform.html#splitRowsAndColumns","title":"Transform.splitRowsAndColumns","content":"Transform.splitRowsAndColumns \nsplitRowsAndColumns \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-transform.html#Parse","title":"Transform.Parse","content":"Transform.Parse \nParse \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html","title":"CellBuilder","content":"CellBuilder \n \nCellBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nCellBuilder.AsCellElement \nAsCellElement \nCellBuilder.Combine \nCombine \nCellBuilder.Combine \nCombine \nCellBuilder.Combine \nCombine \nCellBuilder.Combine \nCombine \nCellBuilder.Combine \nCombine \nCellBuilder.Combine \nCombine \nCellBuilder.Combine \nCombine \nCellBuilder.Combine \nCombine \nCellBuilder.Combine \nCombine \nCellBuilder.Delay \nDelay \nCellBuilder.For \nFor \nCellBuilder.Quote \nQuote \nCellBuilder.Run \nRun \nCellBuilder.Run \nRun \nCellBuilder.Run \nRun \nCellBuilder.SignMessages \nSignMessages \nCellBuilder.Yield \nYield \nCellBuilder.Yield \nYield \nCellBuilder.Yield \nYield \nCellBuilder.Yield \nYield \nCellBuilder.Yield \nYield \nCellBuilder.Yield \nYield \nCellBuilder.Yield \nYield \nCellBuilder.Yield \nYield \nCellBuilder.Yield \nYield \nCellBuilder.YieldFrom \nYieldFrom \nCellBuilder.Zero \nZero \nCellBuilder.Empty \nEmpty"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#\u0060\u0060.ctor\u0060\u0060","title":"CellBuilder.\u0060\u0060.ctor\u0060\u0060","content":"CellBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#AsCellElement","title":"CellBuilder.AsCellElement","content":"CellBuilder.AsCellElement \nAsCellElement \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Delay","title":"CellBuilder.Delay","content":"CellBuilder.Delay \nDelay \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#For","title":"CellBuilder.For","content":"CellBuilder.For \nFor \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Quote","title":"CellBuilder.Quote","content":"CellBuilder.Quote \nQuote \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Run","title":"CellBuilder.Run","content":"CellBuilder.Run \nRun \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Run","title":"CellBuilder.Run","content":"CellBuilder.Run \nRun \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Run","title":"CellBuilder.Run","content":"CellBuilder.Run \nRun \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#SignMessages","title":"CellBuilder.SignMessages","content":"CellBuilder.SignMessages \nSignMessages \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#YieldFrom","title":"CellBuilder.YieldFrom","content":"CellBuilder.YieldFrom \nYieldFrom \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Zero","title":"CellBuilder.Zero","content":"CellBuilder.Zero \nZero \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Empty","title":"CellBuilder.Empty","content":"CellBuilder.Empty \nEmpty \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellelement.html","title":"CellElement","content":"CellElement \n \nCellElement.Item1 \nItem1 \nCellElement.Item2 \nItem2"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellelement.html#Item1","title":"CellElement.Item1","content":"CellElement.Item1 \nItem1 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellelement.html#Item2","title":"CellElement.Item2","content":"CellElement.Item2 \nItem2 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html","title":"ColumnBuilder","content":"ColumnBuilder \n \nColumnBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nColumnBuilder.Combine \nCombine \nColumnBuilder.Combine \nCombine \nColumnBuilder.Combine \nCombine \nColumnBuilder.Combine \nCombine \nColumnBuilder.Combine \nCombine \nColumnBuilder.Combine \nCombine \nColumnBuilder.Combine \nCombine \nColumnBuilder.Combine \nCombine \nColumnBuilder.Combine \nCombine \nColumnBuilder.Delay \nDelay \nColumnBuilder.For \nFor \nColumnBuilder.Quote \nQuote \nColumnBuilder.Run \nRun \nColumnBuilder.Run \nRun \nColumnBuilder.Run \nRun \nColumnBuilder.SignMessages \nSignMessages \nColumnBuilder.Yield \nYield \nColumnBuilder.Yield \nYield \nColumnBuilder.Yield \nYield \nColumnBuilder.Yield \nYield \nColumnBuilder.Yield \nYield \nColumnBuilder.Yield \nYield \nColumnBuilder.Yield \nYield \nColumnBuilder.Yield \nYield \nColumnBuilder.Yield \nYield \nColumnBuilder.Yield \nYield \nColumnBuilder.Yield \nYield \nColumnBuilder.Yield \nYield \nColumnBuilder.Yield \nYield \nColumnBuilder.YieldFrom \nYieldFrom \nColumnBuilder.Zero \nZero \nColumnBuilder.Empty \nEmpty"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#\u0060\u0060.ctor\u0060\u0060","title":"ColumnBuilder.\u0060\u0060.ctor\u0060\u0060","content":"ColumnBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Delay","title":"ColumnBuilder.Delay","content":"ColumnBuilder.Delay \nDelay \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#For","title":"ColumnBuilder.For","content":"ColumnBuilder.For \nFor \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Quote","title":"ColumnBuilder.Quote","content":"ColumnBuilder.Quote \nQuote \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Run","title":"ColumnBuilder.Run","content":"ColumnBuilder.Run \nRun \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Run","title":"ColumnBuilder.Run","content":"ColumnBuilder.Run \nRun \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Run","title":"ColumnBuilder.Run","content":"ColumnBuilder.Run \nRun \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#SignMessages","title":"ColumnBuilder.SignMessages","content":"ColumnBuilder.SignMessages \nSignMessages \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#YieldFrom","title":"ColumnBuilder.YieldFrom","content":"ColumnBuilder.YieldFrom \nYieldFrom \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Zero","title":"ColumnBuilder.Zero","content":"ColumnBuilder.Zero \nZero \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Empty","title":"ColumnBuilder.Empty","content":"ColumnBuilder.Empty \nEmpty \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnelement.html","title":"ColumnElement","content":"ColumnElement \n \nColumnElement.IndexedCell \nIndexedCell \nColumnElement.UnindexedCell \nUnindexedCell"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnelement.html#IndexedCell","title":"ColumnElement.IndexedCell","content":"ColumnElement.IndexedCell \nIndexedCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnelement.html#UnindexedCell","title":"ColumnElement.UnindexedCell","content":"ColumnElement.UnindexedCell \nUnindexedCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnindex.html","title":"ColumnIndex","content":"ColumnIndex \n \nColumnIndex.Index \nIndex \nColumnIndex.Col \nCol"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnindex.html#Index","title":"ColumnIndex.Index","content":"ColumnIndex.Index \nIndex \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnindex.html#Col","title":"ColumnIndex.Col","content":"ColumnIndex.Col \nCol \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html","title":"DSL","content":"DSL \n \nDSL.dropCell \ndropCell \nDSL.dropColumn \ndropColumn \nDSL.dropRow \ndropRow \nDSL.dropSheet \ndropSheet \nDSL.dropWorkbook \ndropWorkbook \nDSL.opt \nopt \nDSL.opt \nopt \nDSL.sheet \nsheet \nDSL.table \ntable \nDSL.row \nrow \nDSL.column \ncolumn \nDSL.cell \ncell \nDSL.workbook \nworkbook"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#dropCell","title":"DSL.dropCell","content":"DSL.dropCell \ndropCell \n\n Drops the cell with the given message\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#dropColumn","title":"DSL.dropColumn","content":"DSL.dropColumn \ndropColumn \n\n Drops the column with the given message\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#dropRow","title":"DSL.dropRow","content":"DSL.dropRow \ndropRow \n\n Drops the row with the given message\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#dropSheet","title":"DSL.dropSheet","content":"DSL.dropSheet \ndropSheet \n\n Drops the sheet with the given message\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#dropWorkbook","title":"DSL.dropWorkbook","content":"DSL.dropWorkbook \ndropWorkbook \n\n Drops the workbook with the given message\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#opt","title":"DSL.opt","content":"DSL.opt \nopt \n\n Transforms any given missing element expression to an optional.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#opt","title":"DSL.opt","content":"DSL.opt \nopt \n\n Transforms any given missing element to an optional.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#sheet","title":"DSL.sheet","content":"DSL.sheet \nsheet \n\n Create a sheet from rows, tables and columns\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#table","title":"DSL.table","content":"DSL.table \ntable \n\n Create a table from either exclusively rows or exclusively columns. \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#row","title":"DSL.row","content":"DSL.row \nrow \n\n Create a row from cells\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#column","title":"DSL.column","content":"DSL.column \ncolumn \n\n Create a column from cells\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#cell","title":"DSL.cell","content":"DSL.cell \ncell \n\n Create a cell from a value\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#workbook","title":"DSL.workbook","content":"DSL.workbook \nworkbook \n\n Create a workbook from sheets\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html","title":"Message","content":"Message \n \nMessage.AsString \nAsString \nMessage.MapText \nMapText \nMessage.TryException \nTryException \nMessage.TryText \nTryText \nMessage.IsTxt \nIsTxt \nMessage.IsExc \nIsExc \nMessage.message \nmessage \nMessage.message \nmessage \nMessage.Text \nText \nMessage.Exception \nException"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#AsString","title":"Message.AsString","content":"Message.AsString \nAsString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#MapText","title":"Message.MapText","content":"Message.MapText \nMapText \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#TryException","title":"Message.TryException","content":"Message.TryException \nTryException \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#TryText","title":"Message.TryText","content":"Message.TryText \nTryText \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#IsTxt","title":"Message.IsTxt","content":"Message.IsTxt \nIsTxt \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#IsExc","title":"Message.IsExc","content":"Message.IsExc \nIsExc \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#message","title":"Message.message","content":"Message.message \nmessage \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#message","title":"Message.message","content":"Message.message \nmessage \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#Text","title":"Message.Text","content":"Message.Text \nText \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#Exception","title":"Message.Exception","content":"Message.Exception \nException \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-reduceoperation.html","title":"ReduceOperation","content":"ReduceOperation \n \nReduceOperation.Reduce \nReduce \nReduceOperation.Concat \nConcat"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-reduceoperation.html#Reduce","title":"ReduceOperation.Reduce","content":"ReduceOperation.Reduce \nReduce \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-reduceoperation.html#Concat","title":"ReduceOperation.Concat","content":"ReduceOperation.Concat \nConcat \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html","title":"RowBuilder","content":"RowBuilder \n \nRowBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nRowBuilder.Combine \nCombine \nRowBuilder.Combine \nCombine \nRowBuilder.Combine \nCombine \nRowBuilder.Combine \nCombine \nRowBuilder.Combine \nCombine \nRowBuilder.Combine \nCombine \nRowBuilder.Combine \nCombine \nRowBuilder.Combine \nCombine \nRowBuilder.Combine \nCombine \nRowBuilder.Delay \nDelay \nRowBuilder.For \nFor \nRowBuilder.Quote \nQuote \nRowBuilder.Run \nRun \nRowBuilder.Run \nRun \nRowBuilder.Run \nRun \nRowBuilder.SignMessages \nSignMessages \nRowBuilder.Yield \nYield \nRowBuilder.Yield \nYield \nRowBuilder.Yield \nYield \nRowBuilder.Yield \nYield \nRowBuilder.Yield \nYield \nRowBuilder.Yield \nYield \nRowBuilder.Yield \nYield \nRowBuilder.Yield \nYield \nRowBuilder.Yield \nYield \nRowBuilder.Yield \nYield \nRowBuilder.Yield \nYield \nRowBuilder.Yield \nYield \nRowBuilder.Yield \nYield \nRowBuilder.YieldFrom \nYieldFrom \nRowBuilder.Zero \nZero \nRowBuilder.Empty \nEmpty"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#\u0060\u0060.ctor\u0060\u0060","title":"RowBuilder.\u0060\u0060.ctor\u0060\u0060","content":"RowBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Delay","title":"RowBuilder.Delay","content":"RowBuilder.Delay \nDelay \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#For","title":"RowBuilder.For","content":"RowBuilder.For \nFor \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Quote","title":"RowBuilder.Quote","content":"RowBuilder.Quote \nQuote \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Run","title":"RowBuilder.Run","content":"RowBuilder.Run \nRun \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Run","title":"RowBuilder.Run","content":"RowBuilder.Run \nRun \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Run","title":"RowBuilder.Run","content":"RowBuilder.Run \nRun \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#SignMessages","title":"RowBuilder.SignMessages","content":"RowBuilder.SignMessages \nSignMessages \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#YieldFrom","title":"RowBuilder.YieldFrom","content":"RowBuilder.YieldFrom \nYieldFrom \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Zero","title":"RowBuilder.Zero","content":"RowBuilder.Zero \nZero \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Empty","title":"RowBuilder.Empty","content":"RowBuilder.Empty \nEmpty \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowelement.html","title":"RowElement","content":"RowElement \n \nRowElement.IndexedCell \nIndexedCell \nRowElement.UnindexedCell \nUnindexedCell"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowelement.html#IndexedCell","title":"RowElement.IndexedCell","content":"RowElement.IndexedCell \nIndexedCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowelement.html#UnindexedCell","title":"RowElement.UnindexedCell","content":"RowElement.UnindexedCell \nUnindexedCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowindex.html","title":"RowIndex","content":"RowIndex \n \nRowIndex.Index \nIndex \nRowIndex.Row \nRow"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowindex.html#Index","title":"RowIndex.Index","content":"RowIndex.Index \nIndex \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowindex.html#Row","title":"RowIndex.Row","content":"RowIndex.Row \nRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html","title":"SheetBuilder","content":"SheetBuilder \n \nSheetBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nSheetBuilder.Combine \nCombine \nSheetBuilder.Delay \nDelay \nSheetBuilder.For \nFor \nSheetBuilder.Run \nRun \nSheetBuilder.SignMessages \nSignMessages \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.YieldFrom \nYieldFrom \nSheetBuilder.Zero \nZero \nSheetBuilder.Empty \nEmpty"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#\u0060\u0060.ctor\u0060\u0060","title":"SheetBuilder.\u0060\u0060.ctor\u0060\u0060","content":"SheetBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Combine","title":"SheetBuilder.Combine","content":"SheetBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Delay","title":"SheetBuilder.Delay","content":"SheetBuilder.Delay \nDelay \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#For","title":"SheetBuilder.For","content":"SheetBuilder.For \nFor \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Run","title":"SheetBuilder.Run","content":"SheetBuilder.Run \nRun \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#SignMessages","title":"SheetBuilder.SignMessages","content":"SheetBuilder.SignMessages \nSignMessages \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#YieldFrom","title":"SheetBuilder.YieldFrom","content":"SheetBuilder.YieldFrom \nYieldFrom \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Zero","title":"SheetBuilder.Zero","content":"SheetBuilder.Zero \nZero \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Empty","title":"SheetBuilder.Empty","content":"SheetBuilder.Empty \nEmpty \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetelement.html","title":"SheetElement","content":"SheetElement \n \nSheetElement.Table \nTable \nSheetElement.IndexedRow \nIndexedRow \nSheetElement.UnindexedRow \nUnindexedRow \nSheetElement.IndexedColumn \nIndexedColumn \nSheetElement.UnindexedColumn \nUnindexedColumn \nSheetElement.IndexedCell \nIndexedCell \nSheetElement.UnindexedCell \nUnindexedCell"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetelement.html#Table","title":"SheetElement.Table","content":"SheetElement.Table \nTable \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetelement.html#IndexedRow","title":"SheetElement.IndexedRow","content":"SheetElement.IndexedRow \nIndexedRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetelement.html#UnindexedRow","title":"SheetElement.UnindexedRow","content":"SheetElement.UnindexedRow \nUnindexedRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetelement.html#IndexedColumn","title":"SheetElement.IndexedColumn","content":"SheetElement.IndexedColumn \nIndexedColumn \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetelement.html#UnindexedColumn","title":"SheetElement.UnindexedColumn","content":"SheetElement.UnindexedColumn \nUnindexedColumn \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetelement.html#IndexedCell","title":"SheetElement.IndexedCell","content":"SheetElement.IndexedCell \nIndexedCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetelement.html#UnindexedCell","title":"SheetElement.UnindexedCell","content":"SheetElement.UnindexedCell \nUnindexedCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentity-1.html","title":"SheetEntity\u003C\u0027T\u003E","content":"SheetEntity\u003C\u0027T\u003E \n \nSheetEntity\u003C\u0027T\u003E.Messages \nMessages \nSheetEntity\u003C\u0027T\u003E.some \nsome \nSheetEntity\u003C\u0027T\u003E.Some \nSome \nSheetEntity\u003C\u0027T\u003E.NoneOptional \nNoneOptional \nSheetEntity\u003C\u0027T\u003E.NoneRequired \nNoneRequired"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentity-1.html#Messages","title":"SheetEntity\u003C\u0027T\u003E.Messages","content":"SheetEntity\u003C\u0027T\u003E.Messages \nMessages \n\n Get messages\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentity-1.html#some","title":"SheetEntity\u003C\u0027T\u003E.some","content":"SheetEntity\u003C\u0027T\u003E.some \nsome \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentity-1.html#Some","title":"SheetEntity\u003C\u0027T\u003E.Some","content":"SheetEntity\u003C\u0027T\u003E.Some \nSome \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentity-1.html#NoneOptional","title":"SheetEntity\u003C\u0027T\u003E.NoneOptional","content":"SheetEntity\u003C\u0027T\u003E.NoneOptional \nNoneOptional \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentity-1.html#NoneRequired","title":"SheetEntity\u003C\u0027T\u003E.NoneRequired","content":"SheetEntity\u003C\u0027T\u003E.NoneRequired \nNoneRequired \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html","title":"TableBuilder","content":"TableBuilder \n \nTableBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nTableBuilder.Combine \nCombine \nTableBuilder.Delay \nDelay \nTableBuilder.For \nFor \nTableBuilder.Run \nRun \nTableBuilder.SignMessages \nSignMessages \nTableBuilder.Yield \nYield \nTableBuilder.Yield \nYield \nTableBuilder.Yield \nYield \nTableBuilder.Yield \nYield \nTableBuilder.Yield \nYield \nTableBuilder.Yield \nYield \nTableBuilder.Yield \nYield \nTableBuilder.Yield \nYield \nTableBuilder.Yield \nYield \nTableBuilder.Yield \nYield \nTableBuilder.YieldFrom \nYieldFrom \nTableBuilder.Zero \nZero \nTableBuilder.Name \nName \nTableBuilder.Empty \nEmpty"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#\u0060\u0060.ctor\u0060\u0060","title":"TableBuilder.\u0060\u0060.ctor\u0060\u0060","content":"TableBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Combine","title":"TableBuilder.Combine","content":"TableBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Delay","title":"TableBuilder.Delay","content":"TableBuilder.Delay \nDelay \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#For","title":"TableBuilder.For","content":"TableBuilder.For \nFor \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Run","title":"TableBuilder.Run","content":"TableBuilder.Run \nRun \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#SignMessages","title":"TableBuilder.SignMessages","content":"TableBuilder.SignMessages \nSignMessages \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#YieldFrom","title":"TableBuilder.YieldFrom","content":"TableBuilder.YieldFrom \nYieldFrom \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Zero","title":"TableBuilder.Zero","content":"TableBuilder.Zero \nZero \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Name","title":"TableBuilder.Name","content":"TableBuilder.Name \nName \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Empty","title":"TableBuilder.Empty","content":"TableBuilder.Empty \nEmpty \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tableelement.html","title":"TableElement","content":"TableElement \n \nTableElement.IsColumn \nIsColumn \nTableElement.IsRow \nIsRow \nTableElement.UnindexedRow \nUnindexedRow \nTableElement.UnindexedColumn \nUnindexedColumn"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tableelement.html#IsColumn","title":"TableElement.IsColumn","content":"TableElement.IsColumn \nIsColumn \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tableelement.html#IsRow","title":"TableElement.IsRow","content":"TableElement.IsRow \nIsRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tableelement.html#UnindexedRow","title":"TableElement.UnindexedRow","content":"TableElement.UnindexedRow \nUnindexedRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tableelement.html#UnindexedColumn","title":"TableElement.UnindexedColumn","content":"TableElement.UnindexedColumn \nUnindexedColumn \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-value.html","title":"Value","content":"Value \n \nValue.Item1 \nItem1 \nValue.Item2 \nItem2"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-value.html#Item1","title":"Value.Item1","content":"Value.Item1 \nItem1 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-value.html#Item2","title":"Value.Item2","content":"Value.Item2 \nItem2 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbook.html","title":"Workbook","content":"Workbook \n \nWorkbook.Workbook \nWorkbook"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbook.html#Workbook","title":"Workbook.Workbook","content":"Workbook.Workbook \nWorkbook \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html","title":"WorkbookBuilder","content":"WorkbookBuilder \n \nWorkbookBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nWorkbookBuilder.Combine \nCombine \nWorkbookBuilder.Delay \nDelay \nWorkbookBuilder.For \nFor \nWorkbookBuilder.Run \nRun \nWorkbookBuilder.SignMessages \nSignMessages \nWorkbookBuilder.Yield \nYield \nWorkbookBuilder.Yield \nYield \nWorkbookBuilder.Yield \nYield \nWorkbookBuilder.Yield \nYield \nWorkbookBuilder.Yield \nYield \nWorkbookBuilder.Yield \nYield \nWorkbookBuilder.Yield \nYield \nWorkbookBuilder.Yield \nYield \nWorkbookBuilder.YieldFrom \nYieldFrom \nWorkbookBuilder.Zero \nZero \nWorkbookBuilder.Empty \nEmpty"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#\u0060\u0060.ctor\u0060\u0060","title":"WorkbookBuilder.\u0060\u0060.ctor\u0060\u0060","content":"WorkbookBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Combine","title":"WorkbookBuilder.Combine","content":"WorkbookBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Delay","title":"WorkbookBuilder.Delay","content":"WorkbookBuilder.Delay \nDelay \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#For","title":"WorkbookBuilder.For","content":"WorkbookBuilder.For \nFor \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Run","title":"WorkbookBuilder.Run","content":"WorkbookBuilder.Run \nRun \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#SignMessages","title":"WorkbookBuilder.SignMessages","content":"WorkbookBuilder.SignMessages \nSignMessages \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Yield","title":"WorkbookBuilder.Yield","content":"WorkbookBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Yield","title":"WorkbookBuilder.Yield","content":"WorkbookBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Yield","title":"WorkbookBuilder.Yield","content":"WorkbookBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Yield","title":"WorkbookBuilder.Yield","content":"WorkbookBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Yield","title":"WorkbookBuilder.Yield","content":"WorkbookBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Yield","title":"WorkbookBuilder.Yield","content":"WorkbookBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Yield","title":"WorkbookBuilder.Yield","content":"WorkbookBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Yield","title":"WorkbookBuilder.Yield","content":"WorkbookBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#YieldFrom","title":"WorkbookBuilder.YieldFrom","content":"WorkbookBuilder.YieldFrom \nYieldFrom \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Zero","title":"WorkbookBuilder.Zero","content":"WorkbookBuilder.Zero \nZero \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Empty","title":"WorkbookBuilder.Empty","content":"WorkbookBuilder.Empty \nEmpty \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookelement.html","title":"WorkbookElement","content":"WorkbookElement \n \nWorkbookElement.UnnamedSheet \nUnnamedSheet \nWorkbookElement.NamedSheet \nNamedSheet"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookelement.html#UnnamedSheet","title":"WorkbookElement.UnnamedSheet","content":"WorkbookElement.UnnamedSheet \nUnnamedSheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookelement.html#NamedSheet","title":"WorkbookElement.NamedSheet","content":"WorkbookElement.NamedSheet \nNamedSheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-formatters.html","title":"Formatters","content":"Formatters \n \nFormatters.formatWorkbook \nformatWorkbook \nFormatters.formatWorksheet \nformatWorksheet"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-formatters.html#formatWorkbook","title":"Formatters.formatWorkbook","content":"Formatters.formatWorkbook \nformatWorkbook \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-formatters.html#formatWorksheet","title":"Formatters.formatWorksheet","content":"Formatters.formatWorksheet \nformatWorksheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-formatterkernelextension.html","title":"FormatterKernelExtension","content":"FormatterKernelExtension \n \nFormatterKernelExtension.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-formatterkernelextension.html#\u0060\u0060.ctor\u0060\u0060","title":"FormatterKernelExtension.\u0060\u0060.ctor\u0060\u0060","content":"FormatterKernelExtension.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html","title":"FsSparseMatrix\u003C\u0027T\u003E","content":"FsSparseMatrix\u003C\u0027T\u003E \n\n A FsSparseMatrix\n \nFsSparseMatrix\u003C\u0027T\u003E.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsSparseMatrix\u003C\u0027T\u003E.MaxIndexForRow \nMaxIndexForRow \nFsSparseMatrix\u003C\u0027T\u003E.MinIndexForRow \nMinIndexForRow \nFsSparseMatrix\u003C\u0027T\u003E.SparseValues \nSparseValues \nFsSparseMatrix\u003C\u0027T\u003E.NumCols \nNumCols \nFsSparseMatrix\u003C\u0027T\u003E.Item \nItem \nFsSparseMatrix\u003C\u0027T\u003E.NumRows \nNumRows \nFsSparseMatrix\u003C\u0027T\u003E.SparseRowOffsets \nSparseRowOffsets \nFsSparseMatrix\u003C\u0027T\u003E.SparseColumnValues \nSparseColumnValues \nFsSparseMatrix\u003C\u0027T\u003E.init \ninit \nFsSparseMatrix\u003C\u0027T\u003E.toArray2D \ntoArray2D"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#\u0060\u0060.ctor\u0060\u0060","title":"FsSparseMatrix\u003C\u0027T\u003E.\u0060\u0060.ctor\u0060\u0060","content":"FsSparseMatrix\u003C\u0027T\u003E.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#MaxIndexForRow","title":"FsSparseMatrix\u003C\u0027T\u003E.MaxIndexForRow","content":"FsSparseMatrix\u003C\u0027T\u003E.MaxIndexForRow \nMaxIndexForRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#MinIndexForRow","title":"FsSparseMatrix\u003C\u0027T\u003E.MinIndexForRow","content":"FsSparseMatrix\u003C\u0027T\u003E.MinIndexForRow \nMinIndexForRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#SparseValues","title":"FsSparseMatrix\u003C\u0027T\u003E.SparseValues","content":"FsSparseMatrix\u003C\u0027T\u003E.SparseValues \nSparseValues \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#NumCols","title":"FsSparseMatrix\u003C\u0027T\u003E.NumCols","content":"FsSparseMatrix\u003C\u0027T\u003E.NumCols \nNumCols \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#Item","title":"FsSparseMatrix\u003C\u0027T\u003E.Item","content":"FsSparseMatrix\u003C\u0027T\u003E.Item \nItem \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#NumRows","title":"FsSparseMatrix\u003C\u0027T\u003E.NumRows","content":"FsSparseMatrix\u003C\u0027T\u003E.NumRows \nNumRows \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#SparseRowOffsets","title":"FsSparseMatrix\u003C\u0027T\u003E.SparseRowOffsets","content":"FsSparseMatrix\u003C\u0027T\u003E.SparseRowOffsets \nSparseRowOffsets \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#SparseColumnValues","title":"FsSparseMatrix\u003C\u0027T\u003E.SparseColumnValues","content":"FsSparseMatrix\u003C\u0027T\u003E.SparseColumnValues \nSparseColumnValues \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#init","title":"FsSparseMatrix\u003C\u0027T\u003E.init","content":"FsSparseMatrix\u003C\u0027T\u003E.init \ninit \n\n Creates a matrix from a sparse sequence \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#toArray2D","title":"FsSparseMatrix\u003C\u0027T\u003E.toArray2D","content":"FsSparseMatrix\u003C\u0027T\u003E.toArray2D \ntoArray2D \n\n Returns the SparseMatrix as Array2D\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html","title":"FsSpreadsheet","content":"FsSpreadsheet \n \nFsSpreadsheet.fromXlsxFile \nfromXlsxFile \nFsSpreadsheet.fromXlsxStream \nfromXlsxStream \nFsSpreadsheet.fromXlsxBytes \nfromXlsxBytes \nFsSpreadsheet.toXlsxFile \ntoXlsxFile \nFsSpreadsheet.toXlsxStream \ntoXlsxStream \nFsSpreadsheet.toXlsxBytes \ntoXlsxBytes \nFsSpreadsheet.ToXlsxFile \nToXlsxFile \nFsSpreadsheet.ToXlsxStream \nToXlsxStream \nFsSpreadsheet.ToXlsxBytes \nToXlsxBytes \nFsSpreadsheet.fromJsonString \nfromJsonString \nFsSpreadsheet.toJsonString \ntoJsonString \nFsSpreadsheet.ToJsonString \nToJsonString"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#fromXlsxFile","title":"FsSpreadsheet.fromXlsxFile","content":"FsSpreadsheet.fromXlsxFile \nfromXlsxFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#fromXlsxStream","title":"FsSpreadsheet.fromXlsxStream","content":"FsSpreadsheet.fromXlsxStream \nfromXlsxStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#fromXlsxBytes","title":"FsSpreadsheet.fromXlsxBytes","content":"FsSpreadsheet.fromXlsxBytes \nfromXlsxBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#toXlsxFile","title":"FsSpreadsheet.toXlsxFile","content":"FsSpreadsheet.toXlsxFile \ntoXlsxFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#toXlsxStream","title":"FsSpreadsheet.toXlsxStream","content":"FsSpreadsheet.toXlsxStream \ntoXlsxStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#toXlsxBytes","title":"FsSpreadsheet.toXlsxBytes","content":"FsSpreadsheet.toXlsxBytes \ntoXlsxBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#ToXlsxFile","title":"FsSpreadsheet.ToXlsxFile","content":"FsSpreadsheet.ToXlsxFile \nToXlsxFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#ToXlsxStream","title":"FsSpreadsheet.ToXlsxStream","content":"FsSpreadsheet.ToXlsxStream \nToXlsxStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#ToXlsxBytes","title":"FsSpreadsheet.ToXlsxBytes","content":"FsSpreadsheet.ToXlsxBytes \nToXlsxBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#fromJsonString","title":"FsSpreadsheet.fromJsonString","content":"FsSpreadsheet.fromJsonString \nfromJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#toJsonString","title":"FsSpreadsheet.toJsonString","content":"FsSpreadsheet.toJsonString \ntoJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#ToJsonString","title":"FsSpreadsheet.ToJsonString","content":"FsSpreadsheet.ToJsonString \nToJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jscell.html","title":"JsCell","content":"JsCell \n \nJsCell.writeFromFsCell \nwriteFromFsCell \nJsCell.readToFsCell \nreadToFsCell"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jscell.html#writeFromFsCell","title":"JsCell.writeFromFsCell","content":"JsCell.writeFromFsCell \nwriteFromFsCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jscell.html#readToFsCell","title":"JsCell.readToFsCell","content":"JsCell.readToFsCell \nreadToFsCell \n\n \u0060worksheetName\u0060, \u0060rowIndex\u0060 and \u0060columnIndex\u0060 are only used for debugging.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jstable.html","title":"JsTable","content":"JsTable \n \nJsTable.writeFromFsTable \nwriteFromFsTable \nJsTable.readToFsTable \nreadToFsTable"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jstable.html#writeFromFsTable","title":"JsTable.writeFromFsTable","content":"JsTable.writeFromFsTable \nwriteFromFsTable \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jstable.html#readToFsTable","title":"JsTable.readToFsTable","content":"JsTable.readToFsTable \nreadToFsTable \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jsworkbook.html","title":"JsWorkbook","content":"JsWorkbook \n \nJsWorkbook.writeFromFsWorkbook \nwriteFromFsWorkbook \nJsWorkbook.readToFsWorkbook \nreadToFsWorkbook"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jsworkbook.html#writeFromFsWorkbook","title":"JsWorkbook.writeFromFsWorkbook","content":"JsWorkbook.writeFromFsWorkbook \nwriteFromFsWorkbook \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jsworkbook.html#readToFsWorkbook","title":"JsWorkbook.readToFsWorkbook","content":"JsWorkbook.readToFsWorkbook \nreadToFsWorkbook \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jsworksheet.html","title":"JsWorksheet","content":"JsWorksheet \n \nJsWorksheet.writeFromFsWorksheet \nwriteFromFsWorksheet \nJsWorksheet.readToFsWorksheet \nreadToFsWorksheet"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jsworksheet.html#writeFromFsWorksheet","title":"JsWorksheet.writeFromFsWorksheet","content":"JsWorksheet.writeFromFsWorksheet \nwriteFromFsWorksheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jsworksheet.html#readToFsWorksheet","title":"JsWorksheet.readToFsWorksheet","content":"JsWorksheet.readToFsWorksheet \nreadToFsWorksheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-json.html","title":"Json","content":"Json \n\n This does currently not correctly work if you want to use this from js\n https://github.com/fable-compiler/Fable/issues/3498\n \nJson.fromJsonString \nfromJsonString \nJson.toJsonString \ntoJsonString \nJson.tryFromJsonString \ntryFromJsonString"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-json.html#fromJsonString","title":"Json.fromJsonString","content":"Json.fromJsonString \nfromJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-json.html#toJsonString","title":"Json.toJsonString","content":"Json.toJsonString \ntoJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-json.html#tryFromJsonString","title":"Json.tryFromJsonString","content":"Json.tryFromJsonString \ntryFromJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html","title":"Xlsx","content":"Xlsx \n\n This does currently not correctly work if you want to use this from js\n https://github.com/fable-compiler/Fable/issues/3498\n \nXlsx.fromBytes \nfromBytes \nXlsx.fromFile \nfromFile \nXlsx.fromStream \nfromStream \nXlsx.fromXlsxBytes \nfromXlsxBytes \nXlsx.fromXlsxFile \nfromXlsxFile \nXlsx.fromXlsxStream \nfromXlsxStream \nXlsx.toBytes \ntoBytes \nXlsx.toFile \ntoFile \nXlsx.toStream \ntoStream \nXlsx.toXlsxBytes \ntoXlsxBytes \nXlsx.toXlsxFile \ntoXlsxFile \nXlsx.toXlsxStream \ntoXlsxStream"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#fromBytes","title":"Xlsx.fromBytes","content":"Xlsx.fromBytes \nfromBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#fromFile","title":"Xlsx.fromFile","content":"Xlsx.fromFile \nfromFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#fromStream","title":"Xlsx.fromStream","content":"Xlsx.fromStream \nfromStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#fromXlsxBytes","title":"Xlsx.fromXlsxBytes","content":"Xlsx.fromXlsxBytes \nfromXlsxBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#fromXlsxFile","title":"Xlsx.fromXlsxFile","content":"Xlsx.fromXlsxFile \nfromXlsxFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#fromXlsxStream","title":"Xlsx.fromXlsxStream","content":"Xlsx.fromXlsxStream \nfromXlsxStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#toBytes","title":"Xlsx.toBytes","content":"Xlsx.toBytes \ntoBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#toFile","title":"Xlsx.toFile","content":"Xlsx.toFile \ntoFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#toStream","title":"Xlsx.toStream","content":"Xlsx.toStream \ntoStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#toXlsxBytes","title":"Xlsx.toXlsxBytes","content":"Xlsx.toXlsxBytes \ntoXlsxBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#toXlsxFile","title":"Xlsx.toXlsxFile","content":"Xlsx.toXlsxFile \ntoXlsxFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#toXlsxStream","title":"Xlsx.toXlsxStream","content":"Xlsx.toXlsxStream \ntoXlsxStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html","title":"Cell","content":"Cell \n \nCell.column \ncolumn \nCell.value \nvalue \nCell.encode \nencode \nCell.decode \ndecode"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html#column","title":"Cell.column","content":"Cell.column \ncolumn \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html#value","title":"Cell.value","content":"Cell.value \nvalue \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html#encode","title":"Cell.encode","content":"Cell.encode \nencode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html#decode","title":"Cell.decode","content":"Cell.decode \ndecode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-row.html","title":"Row","content":"Row \n \nRow.cells \ncells \nRow.number \nnumber \nRow.encode \nencode \nRow.decode \ndecode"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-row.html#cells","title":"Row.cells","content":"Row.cells \ncells \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-row.html#number","title":"Row.number","content":"Row.number \nnumber \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-row.html#encode","title":"Row.encode","content":"Row.encode \nencode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-row.html#decode","title":"Row.decode","content":"Row.decode \ndecode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-table.html","title":"Table","content":"Table \n \nTable.name \nname \nTable.range \nrange \nTable.encode \nencode \nTable.decode \ndecode"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-table.html#name","title":"Table.name","content":"Table.name \nname \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-table.html#range","title":"Table.range","content":"Table.range \nrange \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-table.html#encode","title":"Table.encode","content":"Table.encode \nencode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-table.html#decode","title":"Table.decode","content":"Table.decode \ndecode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-value.html","title":"Value","content":"Value \n \nValue.Decode \nDecode \nValue.encode \nencode \nValue.decode \ndecode"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-value.html#encode","title":"Value.encode","content":"Value.encode \nencode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-value.html#decode","title":"Value.decode","content":"Value.decode \ndecode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-value-decode.html","title":"Decode","content":"Decode \n \nDecode.datetime \ndatetime"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-value-decode.html#datetime","title":"Decode.datetime","content":"Decode.datetime \ndatetime \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-workbook.html","title":"Workbook","content":"Workbook \n \nWorkbook.sheets \nsheets \nWorkbook.encode \nencode \nWorkbook.decode \ndecode"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-workbook.html#sheets","title":"Workbook.sheets","content":"Workbook.sheets \nsheets \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-workbook.html#encode","title":"Workbook.encode","content":"Workbook.encode \nencode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-workbook.html#decode","title":"Workbook.decode","content":"Workbook.decode \ndecode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html","title":"Worksheet","content":"Worksheet \n \nWorksheet.name \nname \nWorksheet.rows \nrows \nWorksheet.tables \ntables \nWorksheet.encode \nencode \nWorksheet.decode \ndecode"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html#name","title":"Worksheet.name","content":"Worksheet.name \nname \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html#rows","title":"Worksheet.rows","content":"Worksheet.rows \nrows \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html#tables","title":"Worksheet.tables","content":"Worksheet.tables \ntables \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html#encode","title":"Worksheet.encode","content":"Worksheet.encode \nencode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html#decode","title":"Worksheet.decode","content":"Worksheet.decode \ndecode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html","title":"Cell","content":"Cell \n\n Functions for creating and manipulating Cells.\n \nCell.CellValue \nCellValue \nCell.cellValuesToDataType \ncellValuesToDataType \nCell.empty \nempty \nCell.inferCellValue \ninferCellValue \nCell.create \ncreate \nCell.createWithFormat \ncreateWithFormat \nCell.setSpacePreserveAttribute \nsetSpacePreserveAttribute \nCell.fromValue \nfromValue \nCell.getCellContent \ngetCellContent \nCell.fromValueWithDataType \nfromValueWithDataType \nCell.getReference \ngetReference \nCell.setReference \nsetReference \nCell.tryGetType \ntryGetType \nCell.getType \ngetType \nCell.setType \nsetType \nCell.tryGetCellValue \ntryGetCellValue \nCell.getCellValue \ngetCellValue \nCell.tryGetValue \ntryGetValue \nCell.getValue \ngetValue \nCell.setValue \nsetValue \nCell.includeSharedStringValue \nincludeSharedStringValue"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#cellValuesToDataType","title":"Cell.cellValuesToDataType","content":"Cell.cellValuesToDataType \ncellValuesToDataType \n\n Takes a CellValue and returns the appropriate DataType.\n \nDataType is the FsSpreadsheet representation of the CellValue enum in OpenXml."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#empty","title":"Cell.empty","content":"Cell.empty \nempty \n\n Creates an empty Cell.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#inferCellValue","title":"Cell.inferCellValue","content":"Cell.inferCellValue \ninferCellValue \n\n Returns the proper CellValues case for the given value.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#create","title":"Cell.create","content":"Cell.create \ncreate \n\n Creates a Cell from a CellValues type case, a \u0022A1\u0022 style reference, and a CellValue containing the value string.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#createWithFormat","title":"Cell.createWithFormat","content":"Cell.createWithFormat \ncreateWithFormat \n\n Creates a Cell from a CellValues type case, a \u0022A1\u0022 style reference, and a CellValue containing the value string.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#setSpacePreserveAttribute","title":"Cell.setSpacePreserveAttribute","content":"Cell.setSpacePreserveAttribute \nsetSpacePreserveAttribute \n\n Sets the preserve attribute of a Cell.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#fromValue","title":"Cell.fromValue","content":"Cell.fromValue \nfromValue \n\n Create a cell using a shared string table, also returns the updated shared string table.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#getCellContent","title":"Cell.getCellContent","content":"Cell.getCellContent \ngetCellContent \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#fromValueWithDataType","title":"Cell.fromValueWithDataType","content":"Cell.fromValueWithDataType \nfromValueWithDataType \n\n Create a cell using a shared string table, also returns the updated shared string table.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#getReference","title":"Cell.getReference","content":"Cell.getReference \ngetReference \n\n Gets \u0022A1\u0022-style Cell reference.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#setReference","title":"Cell.setReference","content":"Cell.setReference \nsetReference \n\n Sets \u0022A1\u0022-style Cell reference.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#tryGetType","title":"Cell.tryGetType","content":"Cell.tryGetType \ntryGetType \n\n Gets Some type if existent. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#getType","title":"Cell.getType","content":"Cell.getType \ngetType \n\n Gets a Cell type.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#setType","title":"Cell.setType","content":"Cell.setType \nsetType \n\n Sets a Cell type.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#tryGetCellValue","title":"Cell.tryGetCellValue","content":"Cell.tryGetCellValue \ntryGetCellValue \n\n Gets Some CellValue if cellValue is existent. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#getCellValue","title":"Cell.getCellValue","content":"Cell.getCellValue \ngetCellValue \n\n Gets the CellValue.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#tryGetValue","title":"Cell.tryGetValue","content":"Cell.tryGetValue \ntryGetValue \n\n Maps a Cell to the value string using a shared string table.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#getValue","title":"Cell.getValue","content":"Cell.getValue \ngetValue \n\n Maps a Cell to the value string using a sharedStringTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#setValue","title":"Cell.setValue","content":"Cell.setValue \nsetValue \n\n Sets a CellValue.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#includeSharedStringValue","title":"Cell.includeSharedStringValue","content":"Cell.includeSharedStringValue \nincludeSharedStringValue \n\n Includes a value from the sharedStringTable in Cell.CellValue.Text.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell-cellvalue.html","title":"CellValue","content":"CellValue \n\n Functions for manipulating CellValues.\n \nCellValue.empty \nempty \nCellValue.create \ncreate \nCellValue.getValue \ngetValue \nCellValue.setValue \nsetValue"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell-cellvalue.html#empty","title":"CellValue.empty","content":"CellValue.empty \nempty \n\n Creates an empty CellValue.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell-cellvalue.html#create","title":"CellValue.create","content":"CellValue.create \ncreate \n\n Create a new CellValue containing the given string.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell-cellvalue.html#getValue","title":"CellValue.getValue","content":"CellValue.getValue \ngetValue \n\n Returns the value stored inside the CellValue.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell-cellvalue.html#setValue","title":"CellValue.setValue","content":"CellValue.setValue \nsetValue \n\n Sets the value inside the CellValue.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata.html","title":"CellData","content":"CellData \n\n Functions for working with CellData.\n \nCellData.CellDataValue \nCellDataValue \nCellData.CellError \nCellError \nCellData.ofCell \nofCell"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata.html#ofCell","title":"CellData.ofCell","content":"CellData.ofCell \nofCell \n\n Creates a CellDataValue from a sharedStringTable and a cell.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-celldatavalue.html","title":"CellDataValue","content":"CellDataValue \n \nCellDataValue.Number \nNumber \nCellDataValue.String \nString \nCellDataValue.Boolean \nBoolean \nCellDataValue.Date \nDate \nCellDataValue.Error \nError"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-celldatavalue.html#Number","title":"CellDataValue.Number","content":"CellDataValue.Number \nNumber \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-celldatavalue.html#String","title":"CellDataValue.String","content":"CellDataValue.String \nString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-celldatavalue.html#Boolean","title":"CellDataValue.Boolean","content":"CellDataValue.Boolean \nBoolean \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-celldatavalue.html#Date","title":"CellDataValue.Date","content":"CellDataValue.Date \nDate \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-celldatavalue.html#Error","title":"CellDataValue.Error","content":"CellDataValue.Error \nError \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html","title":"CellError","content":"CellError \n \nCellError.Null \nNull \nCellError.DIV0 \nDIV0 \nCellError.VALUE \nVALUE \nCellError.REF \nREF \nCellError.NAME \nNAME \nCellError.NUM \nNUM \nCellError.NA \nNA \nCellError.GettingDATA \nGettingDATA"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html#Null","title":"CellError.Null","content":"CellError.Null \nNull \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html#DIV0","title":"CellError.DIV0","content":"CellError.DIV0 \nDIV0 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html#VALUE","title":"CellError.VALUE","content":"CellError.VALUE \nVALUE \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html#REF","title":"CellError.REF","content":"CellError.REF \nREF \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html#NAME","title":"CellError.NAME","content":"CellError.NAME \nNAME \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html#NUM","title":"CellError.NUM","content":"CellError.NUM \nNUM \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html#NA","title":"CellError.NA","content":"CellError.NA \nNA \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html#GettingDATA","title":"CellError.GettingDATA","content":"CellError.GettingDATA \nGettingDATA \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html","title":"FsExtensions","content":"FsExtensions \n\n Classes that extend the core FsSpreadsheet library with IO functionalities.\n \nFsExtensions.ofXlsXCell \nofXlsXCell \nFsExtensions.ofXlsxCell \nofXlsxCell \nFsExtensions.tryOfXlsxCell \ntryOfXlsxCell \nFsExtensions.toXlsxCell \ntoXlsxCell \nFsExtensions.ToXlsxTable \nToXlsxTable \nFsExtensions.toXlsxTable \ntoXlsxTable \nFsExtensions.fromXlsxTable \nfromXlsxTable \nFsExtensions.GetWorksheetOfTable \nGetWorksheetOfTable \nFsExtensions.getWorksheetOfTable \ngetWorksheetOfTable \nFsExtensions.ToXlsxWorksheet \nToXlsxWorksheet \nFsExtensions.toXlsxWorksheet \ntoXlsxWorksheet \nFsExtensions.AppendTablesToWorksheetPart \nAppendTablesToWorksheetPart \nFsExtensions.appendTablesToWorksheetPart \nappendTablesToWorksheetPart \nFsExtensions.fromSpreadsheetDocument \nfromSpreadsheetDocument \nFsExtensions.fromPackage \nfromPackage \nFsExtensions.fromXlsxStream \nfromXlsxStream \nFsExtensions.fromXlsxBytes \nfromXlsxBytes \nFsExtensions.fromXlsxFile \nfromXlsxFile \nFsExtensions.fromFile \nfromFile \nFsExtensions.tryFromJsonString \ntryFromJsonString \nFsExtensions.fromJsonString \nfromJsonString \nFsExtensions.tryFromJsonFile \ntryFromJsonFile \nFsExtensions.fromJsonFile \nfromJsonFile \nFsExtensions.ToEmptySpreadsheet \nToEmptySpreadsheet \nFsExtensions.ToXlsxStream \nToXlsxStream \nFsExtensions.toXlsxStream \ntoXlsxStream \nFsExtensions.ToXlsxBytes \nToXlsxBytes \nFsExtensions.toXlsxBytes \ntoXlsxBytes \nFsExtensions.ToXlsxFile \nToXlsxFile \nFsExtensions.ToFile \nToFile \nFsExtensions.toXlsxFile \ntoXlsxFile \nFsExtensions.toFile \ntoFile \nFsExtensions.toJsonString \ntoJsonString \nFsExtensions.toJsonFile \ntoJsonFile \nFsExtensions.ToJsonString \nToJsonString \nFsExtensions.ToJsonFile \nToJsonFile"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ofXlsXCell","title":"FsExtensions.ofXlsXCell","content":"FsExtensions.ofXlsXCell \nofXlsXCell \n\n Converts a given CellValues to the respective DataType.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ofXlsxCell","title":"FsExtensions.ofXlsxCell","content":"FsExtensions.ofXlsxCell \nofXlsxCell \n\n Creates an FsCell on the basis of an XlsxCell. Uses a SharedStringTable if present to get the XlsxCell\u0027s value.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#tryOfXlsxCell","title":"FsExtensions.tryOfXlsxCell","content":"FsExtensions.tryOfXlsxCell \ntryOfXlsxCell \n\n Creates an FsCell on the basis of an XlsxCell. Uses a SharedStringTable if present to get the XlsxCell\u0027s value.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toXlsxCell","title":"FsExtensions.toXlsxCell","content":"FsExtensions.toXlsxCell \ntoXlsxCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToXlsxTable","title":"FsExtensions.ToXlsxTable","content":"FsExtensions.ToXlsxTable \nToXlsxTable \n\n Returns the FsTable with given FsCellsCollection in the form of an XlsxTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toXlsxTable","title":"FsExtensions.toXlsxTable","content":"FsExtensions.toXlsxTable \ntoXlsxTable \n\n Returns an FsTable with given FsCellsCollection in the form of an XlsxTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromXlsxTable","title":"FsExtensions.fromXlsxTable","content":"FsExtensions.fromXlsxTable \nfromXlsxTable \n\n Takes an XlsxTable and returns an FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#GetWorksheetOfTable","title":"FsExtensions.GetWorksheetOfTable","content":"FsExtensions.GetWorksheetOfTable \nGetWorksheetOfTable \n\n Returns the FsWorksheet associated with the FsTable in a given FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#getWorksheetOfTable","title":"FsExtensions.getWorksheetOfTable","content":"FsExtensions.getWorksheetOfTable \ngetWorksheetOfTable \n\n Returns the FsWorksheet associated with a given FsTable in an FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToXlsxWorksheet","title":"FsExtensions.ToXlsxWorksheet","content":"FsExtensions.ToXlsxWorksheet \nToXlsxWorksheet \n\n Returns the FsWorksheet in the form of an XlsxSpreadsheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toXlsxWorksheet","title":"FsExtensions.toXlsxWorksheet","content":"FsExtensions.toXlsxWorksheet \ntoXlsxWorksheet \n\n Returns an FsWorksheet in the form of an XlsxSpreadsheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#AppendTablesToWorksheetPart","title":"FsExtensions.AppendTablesToWorksheetPart","content":"FsExtensions.AppendTablesToWorksheetPart \nAppendTablesToWorksheetPart \n\n Appends the FsTables of this FsWorksheet to a given OpenXmlWorksheetPart in an XlsxWorkbookPart.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#appendTablesToWorksheetPart","title":"FsExtensions.appendTablesToWorksheetPart","content":"FsExtensions.appendTablesToWorksheetPart \nappendTablesToWorksheetPart \n\n Appends the FsTables of an FsWorksheet to a given OpenXmlWorksheetPart in an XlsxWorkbookPart.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromSpreadsheetDocument","title":"FsExtensions.fromSpreadsheetDocument","content":"FsExtensions.fromSpreadsheetDocument \nfromSpreadsheetDocument \n\n Creates an FsWorkbook from a given SpreadsheetDocument.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromPackage","title":"FsExtensions.fromPackage","content":"FsExtensions.fromPackage \nfromPackage \n\n Creates an FsWorkbook from a given Packaging.Package xlsx package.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromXlsxStream","title":"FsExtensions.fromXlsxStream","content":"FsExtensions.fromXlsxStream \nfromXlsxStream \n\n Creates an FsWorkbook from a given Stream to an XlsxFile.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromXlsxBytes","title":"FsExtensions.fromXlsxBytes","content":"FsExtensions.fromXlsxBytes \nfromXlsxBytes \n\n Creates an FsWorkbook from a given Stream to an XlsxFile.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromXlsxFile","title":"FsExtensions.fromXlsxFile","content":"FsExtensions.fromXlsxFile \nfromXlsxFile \n\n Takes the path to an Xlsx file and returns the FsWorkbook based on its content.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromFile","title":"FsExtensions.fromFile","content":"FsExtensions.fromFile \nfromFile \n\n Takes the path to an Xlsx file and returns the FsWorkbook based on its content.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#tryFromJsonString","title":"FsExtensions.tryFromJsonString","content":"FsExtensions.tryFromJsonString \ntryFromJsonString \n\n Takes a json string and returns the FsWorkbook based on its content.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromJsonString","title":"FsExtensions.fromJsonString","content":"FsExtensions.fromJsonString \nfromJsonString \n\n Takes a json string and returns the FsWorkbook based on its content.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#tryFromJsonFile","title":"FsExtensions.tryFromJsonFile","content":"FsExtensions.tryFromJsonFile \ntryFromJsonFile \n\n Takes the path to an json file and returns the FsWorkbook based on its content.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromJsonFile","title":"FsExtensions.fromJsonFile","content":"FsExtensions.fromJsonFile \nfromJsonFile \n\n Takes the path to an json file and returns the FsWorkbook based on its content.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToEmptySpreadsheet","title":"FsExtensions.ToEmptySpreadsheet","content":"FsExtensions.ToEmptySpreadsheet \nToEmptySpreadsheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToXlsxStream","title":"FsExtensions.ToXlsxStream","content":"FsExtensions.ToXlsxStream \nToXlsxStream \n\n Writes the FsWorkbook into a given MemoryStream.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toXlsxStream","title":"FsExtensions.toXlsxStream","content":"FsExtensions.toXlsxStream \ntoXlsxStream \n\n Writes an FsWorkbook into a given MemoryStream.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToXlsxBytes","title":"FsExtensions.ToXlsxBytes","content":"FsExtensions.ToXlsxBytes \nToXlsxBytes \n\n Returns the FsWorkbook in the form of a byte array.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toXlsxBytes","title":"FsExtensions.toXlsxBytes","content":"FsExtensions.toXlsxBytes \ntoXlsxBytes \n\n Returns an FsWorkbook in the form of a byte array.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToXlsxFile","title":"FsExtensions.ToXlsxFile","content":"FsExtensions.ToXlsxFile \nToXlsxFile \n\n Writes the FsWorkbook into a binary file at the given path.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToFile","title":"FsExtensions.ToFile","content":"FsExtensions.ToFile \nToFile \n\n Writes the FsWorkbook into a binary file at the given path.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toXlsxFile","title":"FsExtensions.toXlsxFile","content":"FsExtensions.toXlsxFile \ntoXlsxFile \n\n Writes an FsWorkbook into a binary file at the given path.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toFile","title":"FsExtensions.toFile","content":"FsExtensions.toFile \ntoFile \n\n Takes the path to an Xlsx file and returns the FsWorkbook based on its content.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toJsonString","title":"FsExtensions.toJsonString","content":"FsExtensions.toJsonString \ntoJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toJsonFile","title":"FsExtensions.toJsonFile","content":"FsExtensions.toJsonFile \ntoJsonFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToJsonString","title":"FsExtensions.ToJsonString","content":"FsExtensions.ToJsonString \nToJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToJsonFile","title":"FsExtensions.ToJsonFile","content":"FsExtensions.ToJsonFile \nToJsonFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-package.html","title":"Package","content":"Package \n \nPackage.tryGetApplication \ntryGetApplication \nPackage.fixLibrePackage \nfixLibrePackage \nPackage.isLibrePackage \nisLibrePackage"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-package.html#tryGetApplication","title":"Package.tryGetApplication","content":"Package.tryGetApplication \ntryGetApplication \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-package.html#fixLibrePackage","title":"Package.fixLibrePackage","content":"Package.fixLibrePackage \nfixLibrePackage \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-package.html#isLibrePackage","title":"Package.isLibrePackage","content":"Package.isLibrePackage \nisLibrePackage \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html","title":"Row","content":"Row \n\n Functions for working with rows (unmanaged: spans and cell references do not get automatically updated).\n \nRow.Spans \nSpans \nRow.empty \nempty \nRow.toCellSeq \ntoCellSeq \nRow.isEmpty \nisEmpty \nRow.iterCells \niterCells \nRow.mapCells \nmapCells \nRow.findCell \nfindCell \nRow.insertCellBefore \ninsertCellBefore \nRow.getIndex \ngetIndex \nRow.setIndex \nsetIndex \nRow.containsCellAt \ncontainsCellAt \nRow.getCellAt \ngetCellAt \nRow.tryGetCellAt \ntryGetCellAt \nRow.tryGetCellAfter \ntryGetCellAfter \nRow.getSpan \ngetSpan \nRow.setSpan \nsetSpan \nRow.extendSpanRight \nextendSpanRight \nRow.extendSpanLeft \nextendSpanLeft \nRow.appendCell \nappendCell \nRow.create \ncreate \nRow.removeCellAt \nremoveCellAt \nRow.tryRemoveCellAt \ntryRemoveCellAt \nRow.tryGetValueAt \ntryGetValueAt \nRow.updateRowSpan \nupdateRowSpan \nRow.updateRowIndex \nupdateRowIndex \nRow.ofValues \nofValues \nRow.moveValueBlockToRight \nmoveValueBlockToRight \nRow.moveValuesToRight \nmoveValuesToRight \nRow.getIndexedValues \ngetIndexedValues \nRow.getRowValues \ngetRowValues \nRow.tryGetRowValues \ntryGetRowValues \nRow.getPresentRowValues \ngetPresentRowValues \nRow.insertValue \ninsertValue \nRow.insertValueAt \ninsertValueAt \nRow.appendValue \nappendValue \nRow.setValue \nsetValue \nRow.includeSharedStringValue \nincludeSharedStringValue"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#empty","title":"Row.empty","content":"Row.empty \nempty \n\n Creates an empty Row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#toCellSeq","title":"Row.toCellSeq","content":"Row.toCellSeq \ntoCellSeq \n\n Returns a sequence of cells contained in the row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#isEmpty","title":"Row.isEmpty","content":"Row.isEmpty \nisEmpty \n\n Returns true if the row contains no cells.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#iterCells","title":"Row.iterCells","content":"Row.iterCells \niterCells \n\n Iterates through all cells of a row with the given function f.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#mapCells","title":"Row.mapCells","content":"Row.mapCells \nmapCells \n\n Applies the function f to all cells of a row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#findCell","title":"Row.findCell","content":"Row.findCell \nfindCell \n\n Returns the first cell in the row for which the predicate returns true.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#insertCellBefore","title":"Row.insertCellBefore","content":"Row.insertCellBefore \ninsertCellBefore \n\n Inserts a cell into the row before a reference cell.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#getIndex","title":"Row.getIndex","content":"Row.getIndex \ngetIndex \n\n Returns the rowIndex of the row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#setIndex","title":"Row.setIndex","content":"Row.setIndex \nsetIndex \n\n Sets the rowIndex of the row\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#containsCellAt","title":"Row.containsCellAt","content":"Row.containsCellAt \ncontainsCellAt \n\n Returns true if the row contains a cell with the given columnIndex.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#getCellAt","title":"Row.getCellAt","content":"Row.getCellAt \ngetCellAt \n\n Returns cell with the given columnIndex.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#tryGetCellAt","title":"Row.tryGetCellAt","content":"Row.tryGetCellAt \ntryGetCellAt \n\n Returns cell with the given columnIndex if it exists, else returns none.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#tryGetCellAfter","title":"Row.tryGetCellAfter","content":"Row.tryGetCellAfter \ntryGetCellAfter \n\n Returns cell matching or exceeding the given column index if it exists, else returns none.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#getSpan","title":"Row.getSpan","content":"Row.getSpan \ngetSpan \n\n Returns the spans of the row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#setSpan","title":"Row.setSpan","content":"Row.setSpan \nsetSpan \n\n Sets the spans of the row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#extendSpanRight","title":"Row.extendSpanRight","content":"Row.extendSpanRight \nextendSpanRight \n\n Extends the right boundary of the spans of the row by the given amount (positive amount increases spans to right and vice versa).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#extendSpanLeft","title":"Row.extendSpanLeft","content":"Row.extendSpanLeft \nextendSpanLeft \n\n Extends the left boundary of the spans of the row by the given amount (positive amount decreases the spans to left and vice versa).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#appendCell","title":"Row.appendCell","content":"Row.appendCell \nappendCell \n\n Append cell to the end of the row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#create","title":"Row.create","content":"Row.create \ncreate \n\n Creates a row from the given rowIndex, columnSpans, and cells.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#removeCellAt","title":"Row.removeCellAt","content":"Row.removeCellAt \nremoveCellAt \n\n Removes the cell at the given columnIndex from the row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#tryRemoveCellAt","title":"Row.tryRemoveCellAt","content":"Row.tryRemoveCellAt \ntryRemoveCellAt \n\n Removes the cell at the given columnIndex from the row if present. Returns none if not.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#tryGetValueAt","title":"Row.tryGetValueAt","content":"Row.tryGetValueAt \ntryGetValueAt \n\n If the row contains a value at the given index, returns it. Returns none if not.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#updateRowSpan","title":"Row.updateRowSpan","content":"Row.updateRowSpan \nupdateRowSpan \n\n Matches the rowSpan to the cell references inside the row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#updateRowIndex","title":"Row.updateRowIndex","content":"Row.updateRowIndex \nupdateRowIndex \n\n Sets the rowIndex of the row and the row indices of the cells in the row to the given 1-based index.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#ofValues","title":"Row.ofValues","content":"Row.ofValues \nofValues \n\n Creates a new row from the given values.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#moveValueBlockToRight","title":"Row.moveValueBlockToRight","content":"Row.moveValueBlockToRight \nmoveValueBlockToRight \n\n If a cell with the given columnIndex exists in the row, moves it one column to the right.\n\n If there already was a cell at the new postion, moves that one too. Repeats until a value is moved into a position previously unoccupied.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#moveValuesToRight","title":"Row.moveValuesToRight","content":"Row.moveValuesToRight \nmoveValuesToRight \n\n Moves all cells starting with the given columnIndex in the row to the right by the given offset.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#getIndexedValues","title":"Row.getIndexedValues","content":"Row.getIndexedValues \ngetIndexedValues \n\n Maps the cells of the given row to tuples of 1-based column indices and the value strings using a sharedStringTable.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#getRowValues","title":"Row.getRowValues","content":"Row.getRowValues \ngetRowValues \n\n Maps the cells of the given row to the value strings.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#tryGetRowValues","title":"Row.tryGetRowValues","content":"Row.tryGetRowValues \ntryGetRowValues \n\n Maps each cell of the given row to each respective value strings if it exists, else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#getPresentRowValues","title":"Row.getPresentRowValues","content":"Row.getPresentRowValues \ngetPresentRowValues \n\n Maps the cells of the given row to the value strings for all existing cells.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#insertValue","title":"Row.insertValue","content":"Row.insertValue \ninsertValue \n\n Adds a value as a cell to the row at the given columnIndex.\n\n If a cell exists at the given columnIndex, shoves it to the right.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#insertValueAt","title":"Row.insertValueAt","content":"Row.insertValueAt \ninsertValueAt \n\n Adds a value as a cell to the row at the given columnindex using a sharedStringTable.\n\n If a cell exists at the given columnindex, shoves it to the right.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#appendValue","title":"Row.appendValue","content":"Row.appendValue \nappendValue \n\n Adds a value as a cell to the end of the row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#setValue","title":"Row.setValue","content":"Row.setValue \nsetValue \n\n Add a value as a cell to the row at the given columnIndex.\n\n If a cell exists at the given columnIndex, overwrites it.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#includeSharedStringValue","title":"Row.includeSharedStringValue","content":"Row.includeSharedStringValue \nincludeSharedStringValue \n\n Includes a value from a sharedStringTable in the cells of the row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html","title":"Spans","content":"Spans \n\n Functions for working with spans. The spans mark the column wise area in which the row lies. \n \nSpans.fromBoundaries \nfromBoundaries \nSpans.toBoundaries \ntoBoundaries \nSpans.rightBoundary \nrightBoundary \nSpans.leftBoundary \nleftBoundary \nSpans.moveHorizontal \nmoveHorizontal \nSpans.extendRight \nextendRight \nSpans.extendLeft \nextendLeft \nSpans.referenceExceedsSpansToRight \nreferenceExceedsSpansToRight \nSpans.referenceExceedsSpansToLeft \nreferenceExceedsSpansToLeft \nSpans.referenceExceedsSpans \nreferenceExceedsSpans"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#fromBoundaries","title":"Spans.fromBoundaries","content":"Spans.fromBoundaries \nfromBoundaries \n\n Given 1 based column start and end indices, returns a \u00221:1\u0022 style spans.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#toBoundaries","title":"Spans.toBoundaries","content":"Spans.toBoundaries \ntoBoundaries \n\n Given a \u00221:1\u0022 style spans, returns 1 based column start and end indices.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#rightBoundary","title":"Spans.rightBoundary","content":"Spans.rightBoundary \nrightBoundary \n\n Gets the right boundary of the spans.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#leftBoundary","title":"Spans.leftBoundary","content":"Spans.leftBoundary \nleftBoundary \n\n Gets the left boundary of the spans.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#moveHorizontal","title":"Spans.moveHorizontal","content":"Spans.moveHorizontal \nmoveHorizontal \n\n Moves both start and end of the spans by the given amount (positive amount moves spans to right and vice versa).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#extendRight","title":"Spans.extendRight","content":"Spans.extendRight \nextendRight \n\n Extends the right boundary of the spans by the given amount (positive amount increases spans to right and vice versa).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#extendLeft","title":"Spans.extendLeft","content":"Spans.extendLeft \nextendLeft \n\n Extends the left boundary of the spans by the given amount (positive amount decreases the spans to left and vice versa).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#referenceExceedsSpansToRight","title":"Spans.referenceExceedsSpansToRight","content":"Spans.referenceExceedsSpansToRight \nreferenceExceedsSpansToRight \n\n Returns true if the column index of the reference exceeds the right boundary of the spans.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#referenceExceedsSpansToLeft","title":"Spans.referenceExceedsSpansToLeft","content":"Spans.referenceExceedsSpansToLeft \nreferenceExceedsSpansToLeft \n\n Returns true if the column index of the reference exceeds the left boundary of the spans.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#referenceExceedsSpans","title":"Spans.referenceExceedsSpans","content":"Spans.referenceExceedsSpans \nreferenceExceedsSpans \n\n Returns true if the column index of the reference does not lie in the boundary of the spans.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html","title":"SharedStringTable","content":"SharedStringTable \n\n Functions for working with SharedStringTables.\n \nSharedStringTable.SharedStringItem \nSharedStringItem \nSharedStringTable.empty \nempty \nSharedStringTable.init \ninit \nSharedStringTable.get \nget \nSharedStringTable.set \nset \nSharedStringTable.toSeq \ntoSeq \nSharedStringTable.getIndexByString \ngetIndexByString \nSharedStringTable.tryGetIndexByString \ntryGetIndexByString \nSharedStringTable.getText \ngetText \nSharedStringTable.count \ncount \nSharedStringTable.append \nappend \nSharedStringTable.insertText \ninsertText \nSharedStringTable.tryGet \ntryGet \nSharedStringTable.toSST \ntoSST"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#empty","title":"SharedStringTable.empty","content":"SharedStringTable.empty \nempty \n\n Creates an empty sharedStringTable.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#init","title":"SharedStringTable.init","content":"SharedStringTable.init \ninit \n\n Sets an empty sharedStringTable.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#get","title":"SharedStringTable.get","content":"SharedStringTable.get \nget \n\n Gets the sharedStringTable of the sharedStringTablePart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#set","title":"SharedStringTable.set","content":"SharedStringTable.set \nset \n\n Sets the sharedStringtable of the sharedStringTablePart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#toSeq","title":"SharedStringTable.toSeq","content":"SharedStringTable.toSeq \ntoSeq \n\n Returns the sharedStringItems contained in the sharedStringTable.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#getIndexByString","title":"SharedStringTable.getIndexByString","content":"SharedStringTable.getIndexByString \ngetIndexByString \n\n Returns the index of the string, or the invers of the element count.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#tryGetIndexByString","title":"SharedStringTable.tryGetIndexByString","content":"SharedStringTable.tryGetIndexByString \ntryGetIndexByString \n\n If the string is contained in the sharedStringTable, contains the index of its position.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#getText","title":"SharedStringTable.getText","content":"SharedStringTable.getText \ngetText \n\n Returns the sharedStringItem at the given index.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#count","title":"SharedStringTable.count","content":"SharedStringTable.count \ncount \n\n Number of sharedStringItems in the sharedStringTable.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#append","title":"SharedStringTable.append","content":"SharedStringTable.append \nappend \n\n Appends the SharedStringItem to the end of the SharedStringTable.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#insertText","title":"SharedStringTable.insertText","content":"SharedStringTable.insertText \ninsertText \n\n Inserts text into the sharedStringTable. If the item already exists, returns its index.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#tryGet","title":"SharedStringTable.tryGet","content":"SharedStringTable.tryGet \ntryGet \n\n Gets the sharedStringTable of the spreadsheet if it exists, else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#toSST","title":"SharedStringTable.toSST","content":"SharedStringTable.toSST \ntoSST \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable-sharedstringitem.html","title":"SharedStringItem","content":"SharedStringItem \n\n Functions for working with SharedStringItems.\n \nSharedStringItem.getText \ngetText \nSharedStringItem.setText \nsetText \nSharedStringItem.create \ncreate \nSharedStringItem.add \nadd"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable-sharedstringitem.html#getText","title":"SharedStringItem.getText","content":"SharedStringItem.getText \ngetText \n\n Gets the string contained in the sharedStringItem.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable-sharedstringitem.html#setText","title":"SharedStringItem.setText","content":"SharedStringItem.setText \nsetText \n\n Sets the string contained in the sharedStringItem.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable-sharedstringitem.html#create","title":"SharedStringItem.create","content":"SharedStringItem.create \ncreate \n\n Creates a sharedStringItem containing the given string.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable-sharedstringitem.html#add","title":"SharedStringItem.add","content":"SharedStringItem.add \nadd \n\n Adds the sharedStringItem to the sharedStringTable.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html","title":"Sheet","content":"Sheet \n\n Part of the Workbook, stores name and other additional info of the sheet. (Unmanaged: Changing a sheet does not alter the associated worksheet which stores the data)\n \nSheet.Sheets \nSheets \nSheet.empty \nempty \nSheet.setName \nsetName \nSheet.getName \ngetName \nSheet.setID \nsetID \nSheet.getID \ngetID \nSheet.setSheetIndex \nsetSheetIndex \nSheet.getSheetIndex \ngetSheetIndex \nSheet.create \ncreate \nSheet.tryItem \ntryItem \nSheet.tryGetById \ntryGetById \nSheet.tryItemByName \ntryItemByName \nSheet.add \nadd \nSheet.remove \nremove \nSheet.tryFind \ntryFind \nSheet.countSheets \ncountSheets"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#empty","title":"Sheet.empty","content":"Sheet.empty \nempty \n\n Creates an empty Sheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#setName","title":"Sheet.setName","content":"Sheet.setName \nsetName \n\n Sets the name of the sheet (this is the name displayed in MS Excel).\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#getName","title":"Sheet.getName","content":"Sheet.getName \ngetName \n\n Gets the name of the sheet (this is the name displayed in MS Excel).\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#setID","title":"Sheet.setID","content":"Sheet.setID \nsetID \n\n Sets the ID of the sheet (this ID associates the sheet with the worksheet).\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#getID","title":"Sheet.getID","content":"Sheet.getID \ngetID \n\n Gets the ID of the sheet (this ID associates the sheet with the worksheet).\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#setSheetIndex","title":"Sheet.setSheetIndex","content":"Sheet.setSheetIndex \nsetSheetIndex \n\n Sets the SheetID of the sheet (this ID determines the position of the sheet tab in MS Excel).\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#getSheetIndex","title":"Sheet.getSheetIndex","content":"Sheet.getSheetIndex \ngetSheetIndex \n\n Gets the SheetID of the sheet (this ID determines the position of the sheet tab in MS Excel).\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#create","title":"Sheet.create","content":"Sheet.create \ncreate \n\n Create a sheet from the id, the name and the sheetID.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#tryItem","title":"Sheet.tryItem","content":"Sheet.tryItem \ntryItem \n\n Returns the item at the given index in the SpreadsheetDocument if it exists. Else returns None.\n \nSheetIndices are 1-based."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#tryGetById","title":"Sheet.tryGetById","content":"Sheet.tryGetById \ntryGetById \n\n Returns the with the given ID in the SpreadsheetDocument if it exists. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#tryItemByName","title":"Sheet.tryItemByName","content":"Sheet.tryItemByName \ntryItemByName \n\n Returns the item with the given name in the spreadsheetDocument if it exists. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#add","title":"Sheet.add","content":"Sheet.add \nadd \n\n Adds the given sheet to the spreadsheetDocument.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#remove","title":"Sheet.remove","content":"Sheet.remove \nremove \n\n Removes the given sheet from the sheets.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#tryFind","title":"Sheet.tryFind","content":"Sheet.tryFind \ntryFind \n\n Returns the sheet for which the predicate returns true (Id Name SheetID -\u003E bool)\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#countSheets","title":"Sheet.countSheets","content":"Sheet.countSheets \ncountSheets \n\n Counts the number of sheets in the spreadsheetDocument.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html","title":"Sheets","content":"Sheets \n\n Functions for working with Sheets.\n \nSheets.empty \nempty \nSheets.getFirstSheet \ngetFirstSheet \nSheets.getSheets \ngetSheets \nSheets.addSheet \naddSheet \nSheets.addSheets \naddSheets \nSheets.get \nget \nSheets.init \ninit \nSheets.getOrInit \ngetOrInit \nSheets.tryGetSheetByName \ntryGetSheetByName"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#empty","title":"Sheets.empty","content":"Sheets.empty \nempty \n\n Creates empty sheets.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#getFirstSheet","title":"Sheets.getFirstSheet","content":"Sheets.getFirstSheet \ngetFirstSheet \n\n Returns the first child sheet of the sheets.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#getSheets","title":"Sheets.getSheets","content":"Sheets.getSheets \ngetSheets \n\n Returns all sheets of the sheets.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#addSheet","title":"Sheets.addSheet","content":"Sheets.addSheet \naddSheet \n\n Adds a single Sheet to the Sheets.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#addSheets","title":"Sheets.addSheets","content":"Sheets.addSheets \naddSheets \n\n Adds a Sheet collection to the Sheets.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#get","title":"Sheets.get","content":"Sheets.get \nget \n\n Gets the sheets of the workbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#init","title":"Sheets.init","content":"Sheets.init \ninit \n\n Add an empty sheets element to the workbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#getOrInit","title":"Sheets.getOrInit","content":"Sheets.getOrInit \ngetOrInit \n\n Returns the existing or a newly created sheets associated with the worksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#tryGetSheetByName","title":"Sheets.tryGetSheetByName","content":"Sheets.tryGetSheetByName \ntryGetSheetByName \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html","title":"SheetData","content":"SheetData \n\n Functions for working with SheetData. (Unmanaged: Row indices and cell references do not automatically get updated)\n \nSheetData.empty \nempty \nSheetData.insertBefore \ninsertBefore \nSheetData.appendRow \nappendRow \nSheetData.getRows \ngetRows \nSheetData.mapRows \nmapRows \nSheetData.countRows \ncountRows \nSheetData.tryGetRowAfter \ntryGetRowAfter \nSheetData.tryGetRowAt \ntryGetRowAt \nSheetData.getRowAt \ngetRowAt \nSheetData.containsRowAt \ncontainsRowAt \nSheetData.removeRowAt \nremoveRowAt \nSheetData.tryRemoveRowAt \ntryRemoveRowAt \nSheetData.moveRowVertical \nmoveRowVertical \nSheetData.moveRowBlockDownward \nmoveRowBlockDownward \nSheetData.getMaxRowIndex \ngetMaxRowIndex \nSheetData.tryGetRowValuesAt \ntryGetRowValuesAt \nSheetData.getRowValuesAt \ngetRowValuesAt \nSheetData.tryGetIndexedRowValuesAt \ntryGetIndexedRowValuesAt \nSheetData.insertRowWithHorizontalOffsetAt \ninsertRowWithHorizontalOffsetAt \nSheetData.insertRowValuesAt \ninsertRowValuesAt \nSheetData.appendRowValues \nappendRowValues \nSheetData.appendValueToRowAt \nappendValueToRowAt \nSheetData.deleteRowAt \ndeleteRowAt \nSheetData.tryGetCellAt \ntryGetCellAt \nSheetData.getCellAt \ngetCellAt \nSheetData.getCellValueAt \ngetCellValueAt \nSheetData.tryGetCellValueAt \ntryGetCellValueAt \nSheetData.insertValueAt \ninsertValueAt \nSheetData.setValueAt \nsetValueAt \nSheetData.tryRemoveValueAt \ntryRemoveValueAt \nSheetData.removeValueAt \nremoveValueAt \nSheetData.includeSharedStringValue \nincludeSharedStringValue \nSheetData.toSparseValueMatrix \ntoSparseValueMatrix"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#empty","title":"SheetData.empty","content":"SheetData.empty \nempty \n\n Creates an empty SheetData.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#insertBefore","title":"SheetData.insertBefore","content":"SheetData.insertBefore \ninsertBefore \n\n Inserts a row into the SheetData before a reference row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#appendRow","title":"SheetData.appendRow","content":"SheetData.appendRow \nappendRow \n\n Append a row to the end of the SheetData.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#getRows","title":"SheetData.getRows","content":"SheetData.getRows \ngetRows \n\n Returns a sequence of rows contained in the SheetData.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#mapRows","title":"SheetData.mapRows","content":"SheetData.mapRows \nmapRows \n\n Applies the given function f onto every row in the SheetData.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#countRows","title":"SheetData.countRows","content":"SheetData.countRows \ncountRows \n\n Returns the number of rows contained in the SheetData.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#tryGetRowAfter","title":"SheetData.tryGetRowAfter","content":"SheetData.tryGetRowAfter \ntryGetRowAfter \n\n Returns row matching or exceeding the given row index if it exists, else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#tryGetRowAt","title":"SheetData.tryGetRowAt","content":"SheetData.tryGetRowAt \ntryGetRowAt \n\n Returns the row with the given rowIndex if it exists, else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#getRowAt","title":"SheetData.getRowAt","content":"SheetData.getRowAt \ngetRowAt \n\n Returns the row with the given rowIndex.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#containsRowAt","title":"SheetData.containsRowAt","content":"SheetData.containsRowAt \ncontainsRowAt \n\n Returns true if the SheetData contains a row with the given rowIndex.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#removeRowAt","title":"SheetData.removeRowAt","content":"SheetData.removeRowAt \nremoveRowAt \n\n Removes the row at the given rowIndex.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#tryRemoveRowAt","title":"SheetData.tryRemoveRowAt","content":"SheetData.tryRemoveRowAt \ntryRemoveRowAt \n\n Removes the row at the given rowIndex if it exists, else it returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#moveRowVertical","title":"SheetData.moveRowVertical","content":"SheetData.moveRowVertical \nmoveRowVertical \n\n If the row with index rowIndex exists in the sheet, moves it downwards by amount. Negative amounts will move the row upwards.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#moveRowBlockDownward","title":"SheetData.moveRowBlockDownward","content":"SheetData.moveRowBlockDownward \nmoveRowBlockDownward \n\nIf a row with the given rowIndex exists in the sheet, moves it one position downwards. \n\n If there already was a row at the new postion, moves that one too. Repeats until a row is moved into a position previously unoccupied.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#getMaxRowIndex","title":"SheetData.getMaxRowIndex","content":"SheetData.getMaxRowIndex \ngetMaxRowIndex \n\n Returns the index of the last row in the sheet.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#tryGetRowValuesAt","title":"SheetData.tryGetRowValuesAt","content":"SheetData.tryGetRowValuesAt \ntryGetRowValuesAt \n\n Gets the string value of the cell at the given 1-based column and rowIndex, if it exists, else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#getRowValuesAt","title":"SheetData.getRowValuesAt","content":"SheetData.getRowValuesAt \ngetRowValuesAt \n\n Gets the string values of the row at the given 1-based rowIndex.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#tryGetIndexedRowValuesAt","title":"SheetData.tryGetIndexedRowValuesAt","content":"SheetData.tryGetIndexedRowValuesAt \ntryGetIndexedRowValuesAt \n\n Maps the cells of the given row to tuples of 1-based column indices and the value strings using a sharedStringTable, if it exists, else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#insertRowWithHorizontalOffsetAt","title":"SheetData.insertRowWithHorizontalOffsetAt","content":"SheetData.insertRowWithHorizontalOffsetAt \ninsertRowWithHorizontalOffsetAt \n\n Adds values as a row to the sheet at the given rowIndex with the given horizontal offset.\n\n If a row exists at the given rowIndex, shoves it downwards.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#insertRowValuesAt","title":"SheetData.insertRowValuesAt","content":"SheetData.insertRowValuesAt \ninsertRowValuesAt \n\n Adds values as a row to the sheet at the given rowIndex.\n\n If a row exists at the given rowIndex, shoves it downwards.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#appendRowValues","title":"SheetData.appendRowValues","content":"SheetData.appendRowValues \nappendRowValues \n\n Append the values as a row to the end of the sheet.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#appendValueToRowAt","title":"SheetData.appendValueToRowAt","content":"SheetData.appendValueToRowAt \nappendValueToRowAt \n\n Append the value as a cell to the end of the row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#deleteRowAt","title":"SheetData.deleteRowAt","content":"SheetData.deleteRowAt \ndeleteRowAt \n\n Removes row from sheet and move the following rows up.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#tryGetCellAt","title":"SheetData.tryGetCellAt","content":"SheetData.tryGetCellAt \ntryGetCellAt \n\n Return a cell at the given row- and columnIndex in the SheetData if it exists. Else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#getCellAt","title":"SheetData.getCellAt","content":"SheetData.getCellAt \ngetCellAt \n\n Returns a cell at the given row- and columnIndex in the SheetData.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#getCellValueAt","title":"SheetData.getCellValueAt","content":"SheetData.getCellValueAt \ngetCellValueAt \n\n Gets the string value of the cell at the given 1-based column- and rowIndex using a sharedStringTable.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#tryGetCellValueAt","title":"SheetData.tryGetCellValueAt","content":"SheetData.tryGetCellValueAt \ntryGetCellValueAt \n\n Gets the string value of the cell at the given 1-based column- and rowIndex using a sharedStringTable if it exists. Else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#insertValueAt","title":"SheetData.insertValueAt","content":"SheetData.insertValueAt \ninsertValueAt \n\n Add a value at the given row- and columnindex to sheet using a shared string table.\n\n If a cell exists at the given position, it is shoved to the right.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#setValueAt","title":"SheetData.setValueAt","content":"SheetData.setValueAt \nsetValueAt \n\n Adds a value at the given row- and columnIndex using a sharedStringTable.\n\n If a cell exists at the given position, overwrites it.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#tryRemoveValueAt","title":"SheetData.tryRemoveValueAt","content":"SheetData.tryRemoveValueAt \ntryRemoveValueAt \n\n Removes the value at the given row- and columnIndex from the sheet if it exists. Else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#removeValueAt","title":"SheetData.removeValueAt","content":"SheetData.removeValueAt \nremoveValueAt \n\n Removes the value at the given row- and columnIndex from the sheet.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#includeSharedStringValue","title":"SheetData.includeSharedStringValue","content":"SheetData.includeSharedStringValue \nincludeSharedStringValue \n\n Includes a value from sharedStringTable in the cells of the rows of the sheetData\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#toSparseValueMatrix","title":"SheetData.toSparseValueMatrix","content":"SheetData.toSparseValueMatrix \ntoSparseValueMatrix \n\n Reads the values of all cells from a sheetData and a sharedStringTable and converts them into a sparse matrix. Values are stored sparsely in a dictionary, with the key being a row index and column index tuple.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html","title":"Spreadsheet","content":"Spreadsheet \n\n Functions for working the spreadsheet document.\n \nSpreadsheet.fromFile \nfromFile \nSpreadsheet.fromStream \nfromStream \nSpreadsheet.initEmpty \ninitEmpty \nSpreadsheet.initEmptyOnStream \ninitEmptyOnStream \nSpreadsheet.getWorkbookPart \ngetWorkbookPart \nSpreadsheet.initWorkbookPart \ninitWorkbookPart \nSpreadsheet.saveChanges \nsaveChanges \nSpreadsheet.close \nclose \nSpreadsheet.saveAs \nsaveAs \nSpreadsheet.init \ninit \nSpreadsheet.initOnStream \ninitOnStream \nSpreadsheet.initWithSst \ninitWithSst \nSpreadsheet.initWithSstOnStream \ninitWithSstOnStream \nSpreadsheet.getSharedStringTable \ngetSharedStringTable \nSpreadsheet.tryGetSharedStringTable \ntryGetSharedStringTable \nSpreadsheet.getOrInitSharedStringTablePart \ngetOrInitSharedStringTablePart \nSpreadsheet.tryGetWorksheetPartBySheetName \ntryGetWorksheetPartBySheetName \nSpreadsheet.tryGetWorksheetPartBySheetIndex \ntryGetWorksheetPartBySheetIndex \nSpreadsheet.tryGetSheetBySheetName \ntryGetSheetBySheetName \nSpreadsheet.tryGetSheetBySheetIndex \ntryGetSheetBySheetIndex \nSpreadsheet.getRowsBySheetIndex \ngetRowsBySheetIndex \nSpreadsheet.getCellsBySheet \ngetCellsBySheet \nSpreadsheet.getCellsBySheetIndex \ngetCellsBySheetIndex \nSpreadsheet.getCellsBySheetID \ngetCellsBySheetID \nSpreadsheet.mapRowOfSheet \nmapRowOfSheet \nSpreadsheet.mapRowsOfSheet \nmapRowsOfSheet \nSpreadsheet.appendRowValuesToSheet \nappendRowValuesToSheet \nSpreadsheet.insertRowValuesIntoSheetAt \ninsertRowValuesIntoSheetAt \nSpreadsheet.insertValueIntoSheetAt \ninsertValueIntoSheetAt \nSpreadsheet.setValueInSheetAt \nsetValueInSheetAt \nSpreadsheet.deleteRowFromSheet \ndeleteRowFromSheet"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#fromFile","title":"Spreadsheet.fromFile","content":"Spreadsheet.fromFile \nfromFile \n\n Opens the spreadsheet located at the given path and initialized a FileStream.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#fromStream","title":"Spreadsheet.fromStream","content":"Spreadsheet.fromStream \nfromStream \n\n Opens the spreadsheet from the given FileStream.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#initEmpty","title":"Spreadsheet.initEmpty","content":"Spreadsheet.initEmpty \ninitEmpty \n\n Initializes a new empty spreadsheet at the given path.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#initEmptyOnStream","title":"Spreadsheet.initEmptyOnStream","content":"Spreadsheet.initEmptyOnStream \ninitEmptyOnStream \n\n Initializes a new empty spreadsheet in the given stream.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#getWorkbookPart","title":"Spreadsheet.getWorkbookPart","content":"Spreadsheet.getWorkbookPart \ngetWorkbookPart \n\n Gets the workbookPart of the spreadsheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#initWorkbookPart","title":"Spreadsheet.initWorkbookPart","content":"Spreadsheet.initWorkbookPart \ninitWorkbookPart \n\n Initialized a new workbookPart in the spreadsheetDocument but only if there is none.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#saveChanges","title":"Spreadsheet.saveChanges","content":"Spreadsheet.saveChanges \nsaveChanges \n\n Saves changes made to the spreadsheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#close","title":"Spreadsheet.close","content":"Spreadsheet.close \nclose \n\n Closes the FileStream to the spreadsheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#saveAs","title":"Spreadsheet.saveAs","content":"Spreadsheet.saveAs \nsaveAs \n\n Saves changes made to the spreadsheet to the given path.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#init","title":"Spreadsheet.init","content":"Spreadsheet.init \ninit \n\n Initializes a new spreadsheet with an empty sheet at the given path.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#initOnStream","title":"Spreadsheet.initOnStream","content":"Spreadsheet.initOnStream \ninitOnStream \n\n Initializes a new spreadsheet with an empty sheet in the given stream.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#initWithSst","title":"Spreadsheet.initWithSst","content":"Spreadsheet.initWithSst \ninitWithSst \n\n Initializes a new spreadsheet with an empty sheet and a sharedStringTable at the given path.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#initWithSstOnStream","title":"Spreadsheet.initWithSstOnStream","content":"Spreadsheet.initWithSstOnStream \ninitWithSstOnStream \n\n Initializes a new spreadsheet with an empty sheet and a sharedStringTable in the given stream.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#getSharedStringTable","title":"Spreadsheet.getSharedStringTable","content":"Spreadsheet.getSharedStringTable \ngetSharedStringTable \n\n Gets the sharedStringTable of a spreadsheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#tryGetSharedStringTable","title":"Spreadsheet.tryGetSharedStringTable","content":"Spreadsheet.tryGetSharedStringTable \ntryGetSharedStringTable \n\n Gets the sharedStringTable of the spreadsheet if it exists, else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#getOrInitSharedStringTablePart","title":"Spreadsheet.getOrInitSharedStringTablePart","content":"Spreadsheet.getOrInitSharedStringTablePart \ngetOrInitSharedStringTablePart \n\n Gets the sharedStringTablePart. If it does not exist, creates a new one.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#tryGetWorksheetPartBySheetName","title":"Spreadsheet.tryGetWorksheetPartBySheetName","content":"Spreadsheet.tryGetWorksheetPartBySheetName \ntryGetWorksheetPartBySheetName \n\n Returns the worksheetPart associated to the sheet with the given name.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#tryGetWorksheetPartBySheetIndex","title":"Spreadsheet.tryGetWorksheetPartBySheetIndex","content":"Spreadsheet.tryGetWorksheetPartBySheetIndex \ntryGetWorksheetPartBySheetIndex \n\n Returns the worksheetPart for the given 0-based sheetIndex of the given spreadsheetDocument. \n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#tryGetSheetBySheetName","title":"Spreadsheet.tryGetSheetBySheetName","content":"Spreadsheet.tryGetSheetBySheetName \ntryGetSheetBySheetName \n\n Returns the sheetData for the given 0-based sheetIndex of the given spreadsheetDocument if it exists. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#tryGetSheetBySheetIndex","title":"Spreadsheet.tryGetSheetBySheetIndex","content":"Spreadsheet.tryGetSheetBySheetIndex \ntryGetSheetBySheetIndex \n\n Returns the sheetData for the given 0-based sheetIndex of the given spreadsheetDocument. \n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#getRowsBySheetIndex","title":"Spreadsheet.getRowsBySheetIndex","content":"Spreadsheet.getRowsBySheetIndex \ngetRowsBySheetIndex \n\n Returns a sequence of rows containing the cells for the given 0-based sheetIndex of the given spreadsheetDocument. \n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#getCellsBySheet","title":"Spreadsheet.getCellsBySheet","content":"Spreadsheet.getCellsBySheet \ngetCellsBySheet \n\n Returns a 1D-sequence of Cells for the given Sheet of the given SpreadsheetDocument.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#getCellsBySheetIndex","title":"Spreadsheet.getCellsBySheetIndex","content":"Spreadsheet.getCellsBySheetIndex \ngetCellsBySheetIndex \n\n Returns a 1D-sequence of Cells for the given sheetIndex of the given SpreadsheetDocument.\n \nSheetIndices are 1-based."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#getCellsBySheetID","title":"Spreadsheet.getCellsBySheetID","content":"Spreadsheet.getCellsBySheetID \ngetCellsBySheetID \n\n Returns a 1D-sequence of Cells for the given sheetIndex of the given SpreadsheetDocument.\n \nSheetIndices are 1-based."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#mapRowOfSheet","title":"Spreadsheet.mapRowOfSheet","content":"Spreadsheet.mapRowOfSheet \nmapRowOfSheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#mapRowsOfSheet","title":"Spreadsheet.mapRowsOfSheet","content":"Spreadsheet.mapRowsOfSheet \nmapRowsOfSheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#appendRowValuesToSheet","title":"Spreadsheet.appendRowValuesToSheet","content":"Spreadsheet.appendRowValuesToSheet \nappendRowValuesToSheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#insertRowValuesIntoSheetAt","title":"Spreadsheet.insertRowValuesIntoSheetAt","content":"Spreadsheet.insertRowValuesIntoSheetAt \ninsertRowValuesIntoSheetAt \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#insertValueIntoSheetAt","title":"Spreadsheet.insertValueIntoSheetAt","content":"Spreadsheet.insertValueIntoSheetAt \ninsertValueIntoSheetAt \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#setValueInSheetAt","title":"Spreadsheet.setValueInSheetAt","content":"Spreadsheet.setValueInSheetAt \nsetValueInSheetAt \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#deleteRowFromSheet","title":"Spreadsheet.deleteRowFromSheet","content":"Spreadsheet.deleteRowFromSheet \ndeleteRowFromSheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet.html","title":"Stylesheet","content":"Stylesheet \n \nStylesheet.Border \nBorder \nStylesheet.CellFormat \nCellFormat \nStylesheet.Fill \nFill \nStylesheet.Font \nFont \nStylesheet.NumberingFormat \nNumberingFormat \nStylesheet.get \nget \nStylesheet.getOrInit \ngetOrInit \nStylesheet.tryGet \ntryGet"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet.html#get","title":"Stylesheet.get","content":"Stylesheet.get \nget \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet.html#getOrInit","title":"Stylesheet.getOrInit","content":"Stylesheet.getOrInit \ngetOrInit \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet.html#tryGet","title":"Stylesheet.tryGet","content":"Stylesheet.tryGet \ntryGet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-border.html","title":"Border","content":"Border \n \nBorder.getDefault \ngetDefault \nBorder.updateCount \nupdateCount \nBorder.initDefaultBorders \ninitDefaultBorders"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-border.html#getDefault","title":"Border.getDefault","content":"Border.getDefault \ngetDefault \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-border.html#updateCount","title":"Border.updateCount","content":"Border.updateCount \nupdateCount \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-border.html#initDefaultBorders","title":"Border.initDefaultBorders","content":"Border.initDefaultBorders \ninitDefaultBorders \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html","title":"CellFormat","content":"CellFormat \n \nCellFormat.isDateTime \nisDateTime \nCellFormat.structurallyEquals \nstructurallyEquals \nCellFormat.updateCount \nupdateCount \nCellFormat.count \ncount \nCellFormat.tryGetIndex \ntryGetIndex \nCellFormat.getAt \ngetAt \nCellFormat.tryGetAt \ntryGetAt \nCellFormat.setAt \nsetAt \nCellFormat.append \nappend \nCellFormat.appendOrGetIndex \nappendOrGetIndex \nCellFormat.getDefault \ngetDefault \nCellFormat.getDefaultDate \ngetDefaultDate \nCellFormat.getDefaultDateTime \ngetDefaultDateTime \nCellFormat.initDefaultCellFormats \ninitDefaultCellFormats"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#isDateTime","title":"CellFormat.isDateTime","content":"CellFormat.isDateTime \nisDateTime \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#structurallyEquals","title":"CellFormat.structurallyEquals","content":"CellFormat.structurallyEquals \nstructurallyEquals \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#updateCount","title":"CellFormat.updateCount","content":"CellFormat.updateCount \nupdateCount \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#count","title":"CellFormat.count","content":"CellFormat.count \ncount \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#tryGetIndex","title":"CellFormat.tryGetIndex","content":"CellFormat.tryGetIndex \ntryGetIndex \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#getAt","title":"CellFormat.getAt","content":"CellFormat.getAt \ngetAt \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#tryGetAt","title":"CellFormat.tryGetAt","content":"CellFormat.tryGetAt \ntryGetAt \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#setAt","title":"CellFormat.setAt","content":"CellFormat.setAt \nsetAt \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#append","title":"CellFormat.append","content":"CellFormat.append \nappend \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#appendOrGetIndex","title":"CellFormat.appendOrGetIndex","content":"CellFormat.appendOrGetIndex \nappendOrGetIndex \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#getDefault","title":"CellFormat.getDefault","content":"CellFormat.getDefault \ngetDefault \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#getDefaultDate","title":"CellFormat.getDefaultDate","content":"CellFormat.getDefaultDate \ngetDefaultDate \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#getDefaultDateTime","title":"CellFormat.getDefaultDateTime","content":"CellFormat.getDefaultDateTime \ngetDefaultDateTime \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#initDefaultCellFormats","title":"CellFormat.initDefaultCellFormats","content":"CellFormat.initDefaultCellFormats \ninitDefaultCellFormats \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-fill.html","title":"Fill","content":"Fill \n \nFill.getDefault \ngetDefault \nFill.updateCount \nupdateCount \nFill.initDefaultFills \ninitDefaultFills"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-fill.html#getDefault","title":"Fill.getDefault","content":"Fill.getDefault \ngetDefault \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-fill.html#updateCount","title":"Fill.updateCount","content":"Fill.updateCount \nupdateCount \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-fill.html#initDefaultFills","title":"Fill.initDefaultFills","content":"Fill.initDefaultFills \ninitDefaultFills \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-font.html","title":"Font","content":"Font \n \nFont.getDefault \ngetDefault \nFont.updateCount \nupdateCount \nFont.initDefaultFonts \ninitDefaultFonts"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-font.html#getDefault","title":"Font.getDefault","content":"Font.getDefault \ngetDefault \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-font.html#updateCount","title":"Font.updateCount","content":"Font.updateCount \nupdateCount \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-font.html#initDefaultFonts","title":"Font.initDefaultFonts","content":"Font.initDefaultFonts \ninitDefaultFonts \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-numberingformat.html","title":"NumberingFormat","content":"NumberingFormat \n \nNumberingFormat.get \nget \nNumberingFormat.tryGet \ntryGet \nNumberingFormat.getFormatCode \ngetFormatCode \nNumberingFormat.isDateTime \nisDateTime"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-numberingformat.html#get","title":"NumberingFormat.get","content":"NumberingFormat.get \nget \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-numberingformat.html#tryGet","title":"NumberingFormat.tryGet","content":"NumberingFormat.tryGet \ntryGet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-numberingformat.html#getFormatCode","title":"NumberingFormat.getFormatCode","content":"NumberingFormat.getFormatCode \ngetFormatCode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-numberingformat.html#isDateTime","title":"NumberingFormat.isDateTime","content":"NumberingFormat.isDateTime \nisDateTime \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html","title":"Table","content":"Table \n\n Functions for working with tables. \n\n The table object itself just stores the name, the headers and the area in which the table lies.\n The values are stored in the sheetData object associated with the same worksheet as the table.\n\n Therefore, in order to work with tables, one should retrieve both the sheetData and the table. The value retrieval functions ask for both.\n \nTable.Area \nArea \nTable.TableColumn \nTableColumn \nTable.TableColumns \nTableColumns \nTable.getByNameBy \ngetByNameBy \nTable.tryGetByNameBy \ntryGetByNameBy \nTable.tryGetFirst \ntryGetFirst \nTable.list \nlist \nTable.getName \ngetName \nTable.setName \nsetName \nTable.getDisplayName \ngetDisplayName \nTable.setDisplayName \nsetDisplayName \nTable.getArea \ngetArea \nTable.setArea \nsetArea \nTable.create \ncreate \nTable.addTable \naddTable \nTable.tryCreateWithExistingHeaders \ntryCreateWithExistingHeaders \nTable.getColumnHeaders \ngetColumnHeaders \nTable.tryGetTableColumnBy \ntryGetTableColumnBy \nTable.tryGetTableColumnByName \ntryGetTableColumnByName \nTable.tryGetColumnValuesByColumnHeader \ntryGetColumnValuesByColumnHeader \nTable.tryGetIndexedColumnValuesByColumnHeader \ntryGetIndexedColumnValuesByColumnHeader \nTable.tryGetKeyValuesByColumnHeaders \ntryGetKeyValuesByColumnHeaders \nTable.toSparseValueMatrix \ntoSparseValueMatrix"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#getByNameBy","title":"Table.getByNameBy","content":"Table.getByNameBy \ngetByNameBy \n\n Returns a table for which the predicate applied to its name returns true.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#tryGetByNameBy","title":"Table.tryGetByNameBy","content":"Table.tryGetByNameBy \ntryGetByNameBy \n\n If a table exists, for which the predicate applied to its name returns true, gets it. Else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#tryGetFirst","title":"Table.tryGetFirst","content":"Table.tryGetFirst \ntryGetFirst \n\n If the worksheetPart contains tables, returns the first one. Else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#list","title":"Table.list","content":"Table.list \nlist \n\n List all tables contained in the worksheet.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#getName","title":"Table.getName","content":"Table.getName \ngetName \n\n Gets the name of a table.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#setName","title":"Table.setName","content":"Table.setName \nsetName \n\n Sets the name of a table.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#getDisplayName","title":"Table.getDisplayName","content":"Table.getDisplayName \ngetDisplayName \n\n Gets the diplayName of a table.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#setDisplayName","title":"Table.setDisplayName","content":"Table.setDisplayName \nsetDisplayName \n\n Sets the displayName of the table.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#getArea","title":"Table.getArea","content":"Table.getArea \ngetArea \n\n Gets the area of the table.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#setArea","title":"Table.setArea","content":"Table.setArea \nsetArea \n\n Sets the area of the table.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#create","title":"Table.create","content":"Table.create \ncreate \n\n Creates a table from a name a area and tableColumns.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#addTable","title":"Table.addTable","content":"Table.addTable \naddTable \n\n Adds a table to the worksheetPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#tryCreateWithExistingHeaders","title":"Table.tryCreateWithExistingHeaders","content":"Table.tryCreateWithExistingHeaders \ntryCreateWithExistingHeaders \n\n Create a table object by an area. If the first row of this area contains values in the given sheet, these are chosen as headers for the table and a table is returned.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#getColumnHeaders","title":"Table.getColumnHeaders","content":"Table.getColumnHeaders \ngetColumnHeaders \n\n Returns the headers of the columns.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#tryGetTableColumnBy","title":"Table.tryGetTableColumnBy","content":"Table.tryGetTableColumnBy \ntryGetTableColumnBy \n\n Returns the tableColumn for which the predicate returns true if it exists. Else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#tryGetTableColumnByName","title":"Table.tryGetTableColumnByName","content":"Table.tryGetTableColumnByName \ntryGetTableColumnByName \n\n If a tableColumn with the given name exists in the table, returns it. Else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#tryGetColumnValuesByColumnHeader","title":"Table.tryGetColumnValuesByColumnHeader","content":"Table.tryGetColumnValuesByColumnHeader \ntryGetColumnValuesByColumnHeader \n\n If a column with the given header exists in the table, returns its values. Else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#tryGetIndexedColumnValuesByColumnHeader","title":"Table.tryGetIndexedColumnValuesByColumnHeader","content":"Table.tryGetIndexedColumnValuesByColumnHeader \ntryGetIndexedColumnValuesByColumnHeader \n\n If a column with the given header exists in the table, returns its indexed values. Else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#tryGetKeyValuesByColumnHeaders","title":"Table.tryGetKeyValuesByColumnHeaders","content":"Table.tryGetKeyValuesByColumnHeaders \ntryGetKeyValuesByColumnHeaders \n\n If a key column and a value with the given header exist in the table, returns a tuple list of keys and values (else returns None). Missing values get replaced with the given default value.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#toSparseValueMatrix","title":"Table.toSparseValueMatrix","content":"Table.toSparseValueMatrix \ntoSparseValueMatrix \n\n Reads a complete table. Values are stored sparsely in a dictionary, with the key being a row index and column header tuple.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html","title":"Area","content":"Area \n\n The areas marks the area in which the table lies. \n \nArea.ofBoundaries \nofBoundaries \nArea.toBoundaries \ntoBoundaries \nArea.rightBoundary \nrightBoundary \nArea.leftBoundary \nleftBoundary \nArea.upperBoundary \nupperBoundary \nArea.lowerBoundary \nlowerBoundary \nArea.moveHorizontal \nmoveHorizontal \nArea.moveVertical \nmoveVertical \nArea.extendRight \nextendRight \nArea.extendLeft \nextendLeft \nArea.referenceExceedsAreaRight \nreferenceExceedsAreaRight \nArea.referenceExceedsAreaLeft \nreferenceExceedsAreaLeft \nArea.referenceExceedsAreaAbove \nreferenceExceedsAreaAbove \nArea.referenceExceedsAreaBelow \nreferenceExceedsAreaBelow \nArea.referenceExceedsArea \nreferenceExceedsArea \nArea.isCorrect \nisCorrect"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#ofBoundaries","title":"Area.ofBoundaries","content":"Area.ofBoundaries \nofBoundaries \n\n Given A1-based top left start and bottom right end indices, returns a \u0022A1:A1\u0022-style area-\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#toBoundaries","title":"Area.toBoundaries","content":"Area.toBoundaries \ntoBoundaries \n\n Given a \u0022A1:A1\u0022-style area, returns A1-based cell start and end cellReferences.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#rightBoundary","title":"Area.rightBoundary","content":"Area.rightBoundary \nrightBoundary \n\n Gets the right boundary of the area.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#leftBoundary","title":"Area.leftBoundary","content":"Area.leftBoundary \nleftBoundary \n\n Gets the left boundary of the area.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#upperBoundary","title":"Area.upperBoundary","content":"Area.upperBoundary \nupperBoundary \n\n Gets the Upper boundary of the area.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#lowerBoundary","title":"Area.lowerBoundary","content":"Area.lowerBoundary \nlowerBoundary \n\n Gets the lower boundary of the area.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#moveHorizontal","title":"Area.moveHorizontal","content":"Area.moveHorizontal \nmoveHorizontal \n\n Moves both start and end of the area by the given amount (positive amount moves area to right and vice versa).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#moveVertical","title":"Area.moveVertical","content":"Area.moveVertical \nmoveVertical \n\n Moves both start and end of the area by the given amount (positive amount moves area to right and vice versa).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#extendRight","title":"Area.extendRight","content":"Area.extendRight \nextendRight \n\n Extends the right boundary of the area by the given amount (positive amount increases area to right and vice versa).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#extendLeft","title":"Area.extendLeft","content":"Area.extendLeft \nextendLeft \n\n Extends the left boundary of the area by the given amount (positive amount decreases the area to left and vice versa).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#referenceExceedsAreaRight","title":"Area.referenceExceedsAreaRight","content":"Area.referenceExceedsAreaRight \nreferenceExceedsAreaRight \n\n Returns true if the column index of the reference exceeds the right boundary of the area.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#referenceExceedsAreaLeft","title":"Area.referenceExceedsAreaLeft","content":"Area.referenceExceedsAreaLeft \nreferenceExceedsAreaLeft \n\n Returns true if the column index of the reference exceeds the left boundary of the area.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#referenceExceedsAreaAbove","title":"Area.referenceExceedsAreaAbove","content":"Area.referenceExceedsAreaAbove \nreferenceExceedsAreaAbove \n\n Returns true if the column index of the reference exceeds the upper boundary of the area.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#referenceExceedsAreaBelow","title":"Area.referenceExceedsAreaBelow","content":"Area.referenceExceedsAreaBelow \nreferenceExceedsAreaBelow \n\n Returns true if the column index of the reference exceeds the lower boundary of the area.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#referenceExceedsArea","title":"Area.referenceExceedsArea","content":"Area.referenceExceedsArea \nreferenceExceedsArea \n\n Returns true if the reference does not lie in the boundary of the area.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#isCorrect","title":"Area.isCorrect","content":"Area.isCorrect \nisCorrect \n\n Returns true if the A1:A1-style area is of correct format.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumn.html","title":"TableColumn","content":"TableColumn \n\n Functions for working with a single tableColumn of a table.\n \nTableColumn.getName \ngetName \nTableColumn.getId \ngetId \nTableColumn.create \ncreate"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumn.html#getName","title":"TableColumn.getName","content":"TableColumn.getName \ngetName \n\n Gets Name of a tableColumn.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumn.html#getId","title":"TableColumn.getId","content":"TableColumn.getId \ngetId \n\n Gets 1-based column index of tableColumn.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumn.html#create","title":"TableColumn.create","content":"TableColumn.create \ncreate \n\n Creates a tableColumn of the given name and id.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumns.html","title":"TableColumns","content":"TableColumns \n\n Functions for working with the columns of a table.\n \nTableColumns.get \nget \nTableColumns.getTableColumns \ngetTableColumns \nTableColumns.count \ncount \nTableColumns.create \ncreate"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumns.html#get","title":"TableColumns.get","content":"TableColumns.get \nget \n\n Gets the tableColumns from a table.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumns.html#getTableColumns","title":"TableColumns.getTableColumns","content":"TableColumns.getTableColumns \ngetTableColumns \n\n Gets the columns from a tableColumns element.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumns.html#count","title":"TableColumns.count","content":"TableColumns.count \ncount \n\n Retruns the number of columns in a tableColumns element.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumns.html#create","title":"TableColumns.create","content":"TableColumns.create \ncreate \n\n Creates a tableColumns sequence.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbook.html","title":"Workbook","content":"Workbook \n\n Functions for manipulating Workbooks. (Unmanaged: changing the sheets does not alter the associated worksheets which store the data)\n \nWorkbook.empty \nempty \nWorkbook.get \nget \nWorkbook.set \nset \nWorkbook.init \ninit \nWorkbook.getOrInit \ngetOrInit"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbook.html#empty","title":"Workbook.empty","content":"Workbook.empty \nempty \n\n Creates an empty Workbook.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbook.html#get","title":"Workbook.get","content":"Workbook.get \nget \n\n Gets the Workbook of the WorkbookPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbook.html#set","title":"Workbook.set","content":"Workbook.set \nset \n\n Sets the Workbook of the WorkbookPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbook.html#init","title":"Workbook.init","content":"Workbook.init \ninit \n\n Sets an empty Workbook in the given WorkbookPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbook.html#getOrInit","title":"Workbook.getOrInit","content":"Workbook.getOrInit \ngetOrInit \n\n Returns the Workbookpart associated with the existing or a newly created Workbook.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html","title":"WorkbookPart","content":"WorkbookPart \n\n Functions for working with WorkbookParts.\n \nWorkbookPart.addWorksheetPart \naddWorksheetPart \nWorkbookPart.initWorksheetPart \ninitWorksheetPart \nWorkbookPart.getWorkSheetParts \ngetWorkSheetParts \nWorkbookPart.containsWorkSheetParts \ncontainsWorkSheetParts \nWorkbookPart.getWorksheetPartById \ngetWorksheetPartById \nWorkbookPart.tryGetWorksheetPartById \ntryGetWorksheetPartById \nWorkbookPart.getWorksheetPartID \ngetWorksheetPartID \nWorkbookPart.getSharedStringTablePart \ngetSharedStringTablePart \nWorkbookPart.initSharedStringTablePart \ninitSharedStringTablePart \nWorkbookPart.containsSharedStringTablePart \ncontainsSharedStringTablePart \nWorkbookPart.getOrInitSharedStringTablePart \ngetOrInitSharedStringTablePart \nWorkbookPart.getSharedStringTable \ngetSharedStringTable \nWorkbookPart.getDataOfFirstSheet \ngetDataOfFirstSheet \nWorkbookPart.getOrInitWorksheetPartByName \ngetOrInitWorksheetPartByName \nWorkbookPart.appendWorksheet \nappendWorksheet \nWorkbookPart.appendSheet \nappendSheet \nWorkbookPart.replaceSheetDataByName \nreplaceSheetDataByName"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#addWorksheetPart","title":"WorkbookPart.addWorksheetPart","content":"WorkbookPart.addWorksheetPart \naddWorksheetPart \n\n Add a WorksheetPart to the WorkbookPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#initWorksheetPart","title":"WorkbookPart.initWorksheetPart","content":"WorkbookPart.initWorksheetPart \ninitWorksheetPart \n\n Add an empty WorksheetPart to the WorkbookPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#getWorkSheetParts","title":"WorkbookPart.getWorkSheetParts","content":"WorkbookPart.getWorkSheetParts \ngetWorkSheetParts \n\n Get the WorksheetParts of the WorkbookPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#containsWorkSheetParts","title":"WorkbookPart.containsWorkSheetParts","content":"WorkbookPart.containsWorkSheetParts \ncontainsWorkSheetParts \n\n Returns true if the WorkbookPart contains at least one WorksheetPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#getWorksheetPartById","title":"WorkbookPart.getWorksheetPartById","content":"WorkbookPart.getWorksheetPartById \ngetWorksheetPartById \n\n Gets the WorksheetPart of the WorkbookPart with the given ID.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#tryGetWorksheetPartById","title":"WorkbookPart.tryGetWorksheetPartById","content":"WorkbookPart.tryGetWorksheetPartById \ntryGetWorksheetPartById \n\n If the WorkbookPart contains the WorksheetPart with the given ID, returns it. Else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#getWorksheetPartID","title":"WorkbookPart.getWorksheetPartID","content":"WorkbookPart.getWorksheetPartID \ngetWorksheetPartID \n\n Gets the ID of the WorksheetPart of the WorkbookPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#getSharedStringTablePart","title":"WorkbookPart.getSharedStringTablePart","content":"WorkbookPart.getSharedStringTablePart \ngetSharedStringTablePart \n\n Gets the SharedStringTablePart of a WorkbookPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#initSharedStringTablePart","title":"WorkbookPart.initSharedStringTablePart","content":"WorkbookPart.initSharedStringTablePart \ninitSharedStringTablePart \n\n Sets an empty SharedStringTablePart in the given WorkbookPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#containsSharedStringTablePart","title":"WorkbookPart.containsSharedStringTablePart","content":"WorkbookPart.containsSharedStringTablePart \ncontainsSharedStringTablePart \n\n Returns true if the WorkbookPart contains a SharedStringTablePart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#getOrInitSharedStringTablePart","title":"WorkbookPart.getOrInitSharedStringTablePart","content":"WorkbookPart.getOrInitSharedStringTablePart \ngetOrInitSharedStringTablePart \n\n Returns the existing or a newly created SharedStringTablePart associated with the WorkbookPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#getSharedStringTable","title":"WorkbookPart.getSharedStringTable","content":"WorkbookPart.getSharedStringTable \ngetSharedStringTable \n\n Returns the SharedStringTable of a WorkbookPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#getDataOfFirstSheet","title":"WorkbookPart.getDataOfFirstSheet","content":"WorkbookPart.getDataOfFirstSheet \ngetDataOfFirstSheet \n\n Returns the SheetData of the first sheet of the given WorkbookPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#getOrInitWorksheetPartByName","title":"WorkbookPart.getOrInitWorksheetPartByName","content":"WorkbookPart.getOrInitWorksheetPartByName \ngetOrInitWorksheetPartByName \n\n Appends a worksheet to the SpreadsheetDocument.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#appendWorksheet","title":"WorkbookPart.appendWorksheet","content":"WorkbookPart.appendWorksheet \nappendWorksheet \n\n Appends a worksheet to the SpreadsheetDocument.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#appendSheet","title":"WorkbookPart.appendSheet","content":"WorkbookPart.appendSheet \nappendSheet \n\n Appends a new sheet with the given SheetData to the SpreadsheetDocument.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#replaceSheetDataByName","title":"WorkbookPart.replaceSheetDataByName","content":"WorkbookPart.replaceSheetDataByName \nreplaceSheetDataByName \n\n Replaces the SheetData of the Sheet with the given sheetname.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html","title":"Worksheet","content":"Worksheet \n\n Stores data of the sheet and the index of the sheet and\n functions for working with the worksheetpart. (Unmanaged: changing a worksheet does not alter the sheet which links the worksheet to the excel workbook)\n \nWorksheet.Comments \nComments \nWorksheet.WorksheetCommentsPart \nWorksheetCommentsPart \nWorksheet.WorksheetPart \nWorksheetPart \nWorksheet.empty \nempty \nWorksheet.addSheetData \naddSheetData \nWorksheet.hasSheetData \nhasSheetData \nWorksheet.ofSheetData \nofSheetData \nWorksheet.getSheetData \ngetSheetData \nWorksheet.setSheetData \nsetSheetData \nWorksheet.get \nget \nWorksheet.setWorksheet \nsetWorksheet \nWorksheet.init \ninit \nWorksheet.getOrInit \ngetOrInit"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#empty","title":"Worksheet.empty","content":"Worksheet.empty \nempty \n\n Empty Worksheet\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#addSheetData","title":"Worksheet.addSheetData","content":"Worksheet.addSheetData \naddSheetData \n\n Associates a SheetData with the Worksheet.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#hasSheetData","title":"Worksheet.hasSheetData","content":"Worksheet.hasSheetData \nhasSheetData \n\n Returns true, if the Worksheet contains SheetData.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#ofSheetData","title":"Worksheet.ofSheetData","content":"Worksheet.ofSheetData \nofSheetData \n\n Creates a Worksheet containing the given SheetData.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#getSheetData","title":"Worksheet.getSheetData","content":"Worksheet.getSheetData \ngetSheetData \n\n Returns the sheetdata associated with the Worksheet.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#setSheetData","title":"Worksheet.setSheetData","content":"Worksheet.setSheetData \nsetSheetData \n\n Sets the SheetData of a Worksheet.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#get","title":"Worksheet.get","content":"Worksheet.get \nget \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#setWorksheet","title":"Worksheet.setWorksheet","content":"Worksheet.setWorksheet \nsetWorksheet \n\n Sets the given Worksheet with the WorksheetPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#init","title":"Worksheet.init","content":"Worksheet.init \ninit \nAssociates an empty Worksheet with the WorksheetPart."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#getOrInit","title":"Worksheet.getOrInit","content":"Worksheet.getOrInit \ngetOrInit \n\n Returns the existing or a newly created Worksheet associated with the WorksheetPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-comments.html","title":"Comments","content":"Comments \n\n Functions for working with Comments.\n \nComments.get \nget \nComments.getCommentList \ngetCommentList \nComments.getAuthors \ngetAuthors \nComments.getCommentAndNoteTexts \ngetCommentAndNoteTexts \nComments.getCommentsAuthorsTextsRefs \ngetCommentsAuthorsTextsRefs \nComments.getNotesAuthorsTextsRefs \ngetNotesAuthorsTextsRefs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-comments.html#get","title":"Comments.get","content":"Comments.get \nget \n\n Returns the comments of the WorksheetCommentsPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-comments.html#getCommentList","title":"Comments.getCommentList","content":"Comments.getCommentList \ngetCommentList \n\n Returns the CommentList of the given Comments.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-comments.html#getAuthors","title":"Comments.getAuthors","content":"Comments.getAuthors \ngetAuthors \nReturns a sequence of author names from the Comments. \nAuthor names might be encrypted in the pattern of \u003Cpre\u003E\u003Ccode class=\u0022\u0022\u003Etc={...}\u003C/code\u003E\u003C/pre\u003E"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-comments.html#getCommentAndNoteTexts","title":"Comments.getCommentAndNoteTexts","content":"Comments.getCommentAndNoteTexts \ngetCommentAndNoteTexts \n\n Returns all Comments and Notes as strings of a CommentList.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-comments.html#getCommentsAuthorsTextsRefs","title":"Comments.getCommentsAuthorsTextsRefs","content":"Comments.getCommentsAuthorsTextsRefs \ngetCommentsAuthorsTextsRefs \n\n Returns a triple of Comments consisting of the author, the comment text written, and the cell reference (A1-style).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-comments.html#getNotesAuthorsTextsRefs","title":"Comments.getNotesAuthorsTextsRefs","content":"Comments.getNotesAuthorsTextsRefs \ngetNotesAuthorsTextsRefs \n\n Returns a triple of Notes consisting of the author, the note text written, and the cell reference (A1-style).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-worksheetcommentspart.html","title":"WorksheetCommentsPart","content":"WorksheetCommentsPart \n\n Functions for extracting / working with WorksheetCommentsParts.\n \nWorksheetCommentsPart.get \nget \nWorksheetCommentsPart.getComments \ngetComments"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-worksheetcommentspart.html#get","title":"WorksheetCommentsPart.get","content":"WorksheetCommentsPart.get \nget \n\n Returns the WorksheetCommentsPart associated with a WorksheetPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-worksheetcommentspart.html#getComments","title":"WorksheetCommentsPart.getComments","content":"WorksheetCommentsPart.getComments \ngetComments \n\n Returns the comments of the WorksheetCommentsPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-worksheetpart.html","title":"WorksheetPart","content":"WorksheetPart \n\n Functions for extracting / working with WorksheetParts.\n \nWorksheetPart.getByID \ngetByID \nWorksheetPart.getSheetData \ngetSheetData \nWorksheetPart.getWorksheetCommentsPart \ngetWorksheetCommentsPart \nWorksheetPart.getTables \ngetTables"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-worksheetpart.html#getByID","title":"WorksheetPart.getByID","content":"WorksheetPart.getByID \ngetByID \n\n Returns the WorksheetPart matching the given sheetID.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-worksheetpart.html#getSheetData","title":"WorksheetPart.getSheetData","content":"WorksheetPart.getSheetData \ngetSheetData \n\n Returns the SheetData associated with the WorksheetPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-worksheetpart.html#getWorksheetCommentsPart","title":"WorksheetPart.getWorksheetCommentsPart","content":"WorksheetPart.getWorksheetCommentsPart \ngetWorksheetCommentsPart \n\n Returns the WorksheetCommentsPart associated with a WorksheetPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-worksheetpart.html#getTables","title":"WorksheetPart.getTables","content":"WorksheetPart.getTables \ngetTables \nReturns the Tables associated with a WorksheetPart"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html","title":"ZipArchiveReader","content":"ZipArchiveReader \n \nZipArchiveReader.DType \nDType \nZipArchiveReader.FsWorkbook \nFsWorkbook \nZipArchiveReader.XmlReader \nXmlReader \nZipArchiveReader.CellFormat \nCellFormat \nZipArchiveReader.NumberFormat \nNumberFormat \nZipArchiveReader.Relationship \nRelationship \nZipArchiveReader.Relationships \nRelationships \nZipArchiveReader.SharedStrings \nSharedStrings \nZipArchiveReader.Styles \nStyles \nZipArchiveReader.WorkBook \nWorkBook \nZipArchiveReader.bool \nbool \nZipArchiveReader.dateTimeFormats \ndateTimeFormats \nZipArchiveReader.customFormats \ncustomFormats \nZipArchiveReader.parseRelationsships \nparseRelationsships \nZipArchiveReader.getWbRelationships \ngetWbRelationships \nZipArchiveReader.getWsRelationships \ngetWsRelationships \nZipArchiveReader.getSharedStrings \ngetSharedStrings \nZipArchiveReader.getStyles \ngetStyles \nZipArchiveReader.parseTable \nparseTable \nZipArchiveReader.getTables \ngetTables \nZipArchiveReader.parseCell \nparseCell \nZipArchiveReader.parseWorksheet \nparseWorksheet \nZipArchiveReader.parseWorkbook \nparseWorkbook"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#bool","title":"ZipArchiveReader.bool","content":"ZipArchiveReader.bool \nbool \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#dateTimeFormats","title":"ZipArchiveReader.dateTimeFormats","content":"ZipArchiveReader.dateTimeFormats \ndateTimeFormats \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#customFormats","title":"ZipArchiveReader.customFormats","content":"ZipArchiveReader.customFormats \ncustomFormats \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#parseRelationsships","title":"ZipArchiveReader.parseRelationsships","content":"ZipArchiveReader.parseRelationsships \nparseRelationsships \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#getWbRelationships","title":"ZipArchiveReader.getWbRelationships","content":"ZipArchiveReader.getWbRelationships \ngetWbRelationships \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#getWsRelationships","title":"ZipArchiveReader.getWsRelationships","content":"ZipArchiveReader.getWsRelationships \ngetWsRelationships \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#getSharedStrings","title":"ZipArchiveReader.getSharedStrings","content":"ZipArchiveReader.getSharedStrings \ngetSharedStrings \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#getStyles","title":"ZipArchiveReader.getStyles","content":"ZipArchiveReader.getStyles \ngetStyles \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#parseTable","title":"ZipArchiveReader.parseTable","content":"ZipArchiveReader.parseTable \nparseTable \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#getTables","title":"ZipArchiveReader.getTables","content":"ZipArchiveReader.getTables \ngetTables \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#parseCell","title":"ZipArchiveReader.parseCell","content":"ZipArchiveReader.parseCell \nparseCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#parseWorksheet","title":"ZipArchiveReader.parseWorksheet","content":"ZipArchiveReader.parseWorksheet \nparseWorksheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#parseWorkbook","title":"ZipArchiveReader.parseWorkbook","content":"ZipArchiveReader.parseWorkbook \nparseWorkbook \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-dtype.html","title":"DType","content":"DType \n \nDType.boolean \nboolean \nDType.number \nnumber \nDType.error \nerror \nDType.sharedString \nsharedString \nDType.string \nstring \nDType.inlineString \ninlineString \nDType.date \ndate"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-dtype.html#boolean","title":"DType.boolean","content":"DType.boolean \nboolean \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-dtype.html#number","title":"DType.number","content":"DType.number \nnumber \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-dtype.html#error","title":"DType.error","content":"DType.error \nerror \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-dtype.html#sharedString","title":"DType.sharedString","content":"DType.sharedString \nsharedString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-dtype.html#string","title":"DType.string","content":"DType.string \nstring \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-dtype.html#inlineString","title":"DType.inlineString","content":"DType.inlineString \ninlineString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-dtype.html#date","title":"DType.date","content":"DType.date \ndate \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-fsworkbook.html","title":"FsWorkbook","content":"FsWorkbook \n \nFsWorkbook.fromZipArchive \nfromZipArchive \nFsWorkbook.fromXlsxStream \nfromXlsxStream \nFsWorkbook.fromXlsxBytes \nfromXlsxBytes \nFsWorkbook.fromXlsxFile \nfromXlsxFile"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-fsworkbook.html#fromZipArchive","title":"FsWorkbook.fromZipArchive","content":"FsWorkbook.fromZipArchive \nfromZipArchive \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-fsworkbook.html#fromXlsxStream","title":"FsWorkbook.fromXlsxStream","content":"FsWorkbook.fromXlsxStream \nfromXlsxStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-fsworkbook.html#fromXlsxBytes","title":"FsWorkbook.fromXlsxBytes","content":"FsWorkbook.fromXlsxBytes \nfromXlsxBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-fsworkbook.html#fromXlsxFile","title":"FsWorkbook.fromXlsxFile","content":"FsWorkbook.fromXlsxFile \nfromXlsxFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-xmlreader.html","title":"XmlReader","content":"XmlReader \n \nXmlReader.isElemWithName \nisElemWithName"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-xmlreader.html#isElemWithName","title":"XmlReader.isElemWithName","content":"XmlReader.isElemWithName \nisElemWithName \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-cellformat.html","title":"CellFormat","content":"CellFormat \n \nCellFormat.isDateTime \nisDateTime \nCellFormat.NumberFormatId \nNumberFormatId \nCellFormat.ApllyNumberFormat \nApllyNumberFormat"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-cellformat.html#isDateTime","title":"CellFormat.isDateTime","content":"CellFormat.isDateTime \nisDateTime \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-cellformat.html#NumberFormatId","title":"CellFormat.NumberFormatId","content":"CellFormat.NumberFormatId \nNumberFormatId \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-cellformat.html#ApllyNumberFormat","title":"CellFormat.ApllyNumberFormat","content":"CellFormat.ApllyNumberFormat \nApllyNumberFormat \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-numberformat.html","title":"NumberFormat","content":"NumberFormat \n \nNumberFormat.isDateTime \nisDateTime \nNumberFormat.Id \nId \nNumberFormat.FormatCode \nFormatCode"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-numberformat.html#isDateTime","title":"NumberFormat.isDateTime","content":"NumberFormat.isDateTime \nisDateTime \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-numberformat.html#Id","title":"NumberFormat.Id","content":"NumberFormat.Id \nId \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-numberformat.html#FormatCode","title":"NumberFormat.FormatCode","content":"NumberFormat.FormatCode \nFormatCode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationship.html","title":"Relationship","content":"Relationship \n \nRelationship.Id \nId \nRelationship.Type \nType \nRelationship.Target \nTarget"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationship.html#Id","title":"Relationship.Id","content":"Relationship.Id \nId \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationship.html#Type","title":"Relationship.Type","content":"Relationship.Type \nType \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationship.html#Target","title":"Relationship.Target","content":"Relationship.Target \nTarget \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationships.html","title":"Relationships","content":"Relationships \n \nRelationships.Keys \nKeys \nRelationships.Values \nValues \nRelationships.IsEmpty \nIsEmpty \nRelationships.Item \nItem \nRelationships.Count \nCount"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationships.html#Keys","title":"Relationships.Keys","content":"Relationships.Keys \nKeys \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationships.html#Values","title":"Relationships.Values","content":"Relationships.Values \nValues \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationships.html#IsEmpty","title":"Relationships.IsEmpty","content":"Relationships.IsEmpty \nIsEmpty \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationships.html#Item","title":"Relationships.Item","content":"Relationships.Item \nItem \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationships.html#Count","title":"Relationships.Count","content":"Relationships.Count \nCount \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-sharedstrings.html","title":"SharedStrings","content":"SharedStrings \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-styles.html","title":"Styles","content":"Styles \n \nStyles.NumberFormats \nNumberFormats \nStyles.CellFormats \nCellFormats"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-styles.html#NumberFormats","title":"Styles.NumberFormats","content":"Styles.NumberFormats \nNumberFormats \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-styles.html#CellFormats","title":"Styles.CellFormats","content":"Styles.CellFormats \nCellFormats \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-workbook.html","title":"WorkBook","content":"WorkBook \n \nWorkBook.Entries \nEntries \nWorkBook.Mode \nMode"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-workbook.html#Entries","title":"WorkBook.Entries","content":"WorkBook.Entries \nEntries \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-workbook.html#Mode","title":"WorkBook.Mode","content":"WorkBook.Mode \nMode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sst.html","title":"SST","content":"SST \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-writer.html","title":"Writer","content":"Writer \n \nWriter.toFile \ntoFile \nWriter.toJsonFile \ntoJsonFile \nWriter.toJsonString \ntoJsonString \nWriter.toXlsxBytes \ntoXlsxBytes \nWriter.toXlsxFile \ntoXlsxFile \nWriter.toXlsxStream \ntoXlsxStream"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-writer.html#toFile","title":"Writer.toFile","content":"Writer.toFile \ntoFile \n\n Writes an FsWorkbook into a binary file at the given path.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-writer.html#toJsonFile","title":"Writer.toJsonFile","content":"Writer.toJsonFile \ntoJsonFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-writer.html#toJsonString","title":"Writer.toJsonString","content":"Writer.toJsonString \ntoJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-writer.html#toXlsxBytes","title":"Writer.toXlsxBytes","content":"Writer.toXlsxBytes \ntoXlsxBytes \n\n Returns an FsWorkbook in the form of a byte array.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-writer.html#toXlsxFile","title":"Writer.toXlsxFile","content":"Writer.toXlsxFile \ntoXlsxFile \n\n Writes an FsWorkbook into a binary file at the given path.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-writer.html#toXlsxStream","title":"Writer.toXlsxStream","content":"Writer.toXlsxStream \ntoXlsxStream \n\n Writes an FsWorkbook into a given MemoryStream.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html","title":"FsSpreadsheet","content":"FsSpreadsheet \n \nFsSpreadsheet.fromXlsxFile \nfromXlsxFile \nFsSpreadsheet.fromXlsxStream \nfromXlsxStream \nFsSpreadsheet.fromXlsxBytes \nfromXlsxBytes \nFsSpreadsheet.toXlsxFile \ntoXlsxFile \nFsSpreadsheet.toXlsxBytes \ntoXlsxBytes \nFsSpreadsheet.ToXlsxFile \nToXlsxFile \nFsSpreadsheet.ToXlsxBytes \nToXlsxBytes \nFsSpreadsheet.fromJsonString \nfromJsonString \nFsSpreadsheet.toJsonString \ntoJsonString \nFsSpreadsheet.ToJsonString \nToJsonString"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#fromXlsxFile","title":"FsSpreadsheet.fromXlsxFile","content":"FsSpreadsheet.fromXlsxFile \nfromXlsxFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#fromXlsxStream","title":"FsSpreadsheet.fromXlsxStream","content":"FsSpreadsheet.fromXlsxStream \nfromXlsxStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#fromXlsxBytes","title":"FsSpreadsheet.fromXlsxBytes","content":"FsSpreadsheet.fromXlsxBytes \nfromXlsxBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#toXlsxFile","title":"FsSpreadsheet.toXlsxFile","content":"FsSpreadsheet.toXlsxFile \ntoXlsxFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#toXlsxBytes","title":"FsSpreadsheet.toXlsxBytes","content":"FsSpreadsheet.toXlsxBytes \ntoXlsxBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#ToXlsxFile","title":"FsSpreadsheet.ToXlsxFile","content":"FsSpreadsheet.ToXlsxFile \nToXlsxFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#ToXlsxBytes","title":"FsSpreadsheet.ToXlsxBytes","content":"FsSpreadsheet.ToXlsxBytes \nToXlsxBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#fromJsonString","title":"FsSpreadsheet.fromJsonString","content":"FsSpreadsheet.fromJsonString \nfromJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#toJsonString","title":"FsSpreadsheet.toJsonString","content":"FsSpreadsheet.toJsonString \ntoJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#ToJsonString","title":"FsSpreadsheet.ToJsonString","content":"FsSpreadsheet.ToJsonString \nToJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell.html","title":"PyCell","content":"PyCell \n \nPyCell.DateTimeStatic \nDateTimeStatic \nPyCell.datetime \ndatetime \nPyCell.DateTime \nDateTime \nPyCell.toUniversalTimePy \ntoUniversalTimePy \nPyCell.fromFsCell \nfromFsCell \nPyCell.toFsCell \ntoFsCell"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell.html#DateTime","title":"PyCell.DateTime","content":"PyCell.DateTime \nDateTime \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell.html#toUniversalTimePy","title":"PyCell.toUniversalTimePy","content":"PyCell.toUniversalTimePy \ntoUniversalTimePy \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell.html#fromFsCell","title":"PyCell.fromFsCell","content":"PyCell.fromFsCell \nfromFsCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell.html#toFsCell","title":"PyCell.toFsCell","content":"PyCell.toFsCell \ntoFsCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell-datetimestatic.html","title":"DateTimeStatic","content":"DateTimeStatic \n \nDateTimeStatic.fromTimeStamp \nfromTimeStamp"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell-datetimestatic.html#fromTimeStamp","title":"DateTimeStatic.fromTimeStamp","content":"DateTimeStatic.fromTimeStamp \nfromTimeStamp \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell-datetime.html","title":"datetime","content":"datetime \n \ndatetime.decoy \ndecoy"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell-datetime.html#decoy","title":"datetime.decoy","content":"datetime.decoy \ndecoy \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycelltype.html","title":"PyCellType","content":"PyCellType \n \nPyCellType.fromDataTyoe \nfromDataTyoe \nPyCellType.toDataType \ntoDataType"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycelltype.html#fromDataTyoe","title":"PyCellType.fromDataTyoe","content":"PyCellType.fromDataTyoe \nfromDataTyoe \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycelltype.html#toDataType","title":"PyCellType.toDataType","content":"PyCellType.toDataType \ntoDataType \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable.html","title":"PyTable","content":"PyTable \n \nPyTable.TableStyleStatic \nTableStyleStatic \nPyTable.tablestyle \ntablestyle \nPyTable.TableStyleInfo \nTableStyleInfo \nPyTable.defaultTableStyle \ndefaultTableStyle \nPyTable.fromFsTable \nfromFsTable \nPyTable.toFsTable \ntoFsTable"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable.html#TableStyleInfo","title":"PyTable.TableStyleInfo","content":"PyTable.TableStyleInfo \nTableStyleInfo \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable.html#defaultTableStyle","title":"PyTable.defaultTableStyle","content":"PyTable.defaultTableStyle \ndefaultTableStyle \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable.html#fromFsTable","title":"PyTable.fromFsTable","content":"PyTable.fromFsTable \nfromFsTable \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable.html#toFsTable","title":"PyTable.toFsTable","content":"PyTable.toFsTable \ntoFsTable \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable-tablestylestatic.html","title":"TableStyleStatic","content":"TableStyleStatic \n \nTableStyleStatic.create \ncreate"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable-tablestylestatic.html#create","title":"TableStyleStatic.create","content":"TableStyleStatic.create \ncreate \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable-tablestyle.html","title":"tablestyle","content":"tablestyle \n \ntablestyle.name \nname \ntablestyle.showColumnStripes \nshowColumnStripes \ntablestyle.showFirstColumn \nshowFirstColumn \ntablestyle.showLastColumn \nshowLastColumn \ntablestyle.showRowStripes \nshowRowStripes"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable-tablestyle.html#name","title":"tablestyle.name","content":"tablestyle.name \nname \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable-tablestyle.html#showColumnStripes","title":"tablestyle.showColumnStripes","content":"tablestyle.showColumnStripes \nshowColumnStripes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable-tablestyle.html#showFirstColumn","title":"tablestyle.showFirstColumn","content":"tablestyle.showFirstColumn \nshowFirstColumn \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable-tablestyle.html#showLastColumn","title":"tablestyle.showLastColumn","content":"tablestyle.showLastColumn \nshowLastColumn \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable-tablestyle.html#showRowStripes","title":"tablestyle.showRowStripes","content":"tablestyle.showRowStripes \nshowRowStripes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pyworkbook.html","title":"PyWorkbook","content":"PyWorkbook \n \nPyWorkbook.fromFsWorkbook \nfromFsWorkbook \nPyWorkbook.toFsWorkbook \ntoFsWorkbook"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pyworkbook.html#fromFsWorkbook","title":"PyWorkbook.fromFsWorkbook","content":"PyWorkbook.fromFsWorkbook \nfromFsWorkbook \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pyworkbook.html#toFsWorkbook","title":"PyWorkbook.toFsWorkbook","content":"PyWorkbook.toFsWorkbook \ntoFsWorkbook \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pyworksheet.html","title":"PyWorksheet","content":"PyWorksheet \n \nPyWorksheet.fromFsWorksheet \nfromFsWorksheet \nPyWorksheet.toFsWorksheet \ntoFsWorksheet"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pyworksheet.html#fromFsWorksheet","title":"PyWorksheet.fromFsWorksheet","content":"PyWorksheet.fromFsWorksheet \nfromFsWorksheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pyworksheet.html#toFsWorksheet","title":"PyWorksheet.toFsWorksheet","content":"PyWorksheet.toFsWorksheet \ntoFsWorksheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-json.html","title":"Json","content":"Json \n\n This does currently not correctly work if you want to use this from js\n https://github.com/fable-compiler/Fable/issues/3498\n \nJson.fromJsonString \nfromJsonString \nJson.toJsonString \ntoJsonString \nJson.tryFromJsonString \ntryFromJsonString"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-json.html#fromJsonString","title":"Json.fromJsonString","content":"Json.fromJsonString \nfromJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-json.html#toJsonString","title":"Json.toJsonString","content":"Json.toJsonString \ntoJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-json.html#tryFromJsonString","title":"Json.tryFromJsonString","content":"Json.tryFromJsonString \ntryFromJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-xlsx.html","title":"Xlsx","content":"Xlsx \n\n This does currently not correctly work if you want to use this from js\n https://github.com/fable-compiler/Fable/issues/3498\n \nXlsx.fromXlsxBytes \nfromXlsxBytes \nXlsx.fromXlsxFile \nfromXlsxFile \nXlsx.fromXlsxStream \nfromXlsxStream \nXlsx.toXlsxBytes \ntoXlsxBytes \nXlsx.toXlsxFile \ntoXlsxFile"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-xlsx.html#fromXlsxBytes","title":"Xlsx.fromXlsxBytes","content":"Xlsx.fromXlsxBytes \nfromXlsxBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-xlsx.html#fromXlsxFile","title":"Xlsx.fromXlsxFile","content":"Xlsx.fromXlsxFile \nfromXlsxFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-xlsx.html#fromXlsxStream","title":"Xlsx.fromXlsxStream","content":"Xlsx.fromXlsxStream \nfromXlsxStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-xlsx.html#toXlsxBytes","title":"Xlsx.toXlsxBytes","content":"Xlsx.toXlsxBytes \ntoXlsxBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-xlsx.html#toXlsxFile","title":"Xlsx.toXlsxFile","content":"Xlsx.toXlsxFile \ntoXlsxFile \n"},{"uri":"/FsSpreadsheet/index.html","title":"FsSpreadsheet Documentation\n","content":"# FsSpreadsheet Documentation\n\nFsSpreadsheet is a library for reading and writing spreadsheets in F#, Javascript and Python using Fable. It is a wrapper of the Python library openpyxl (https://openpyxl.readthedocs.io/en/stable/) and the Javascript library exceljs (https://www.npmjs.com/package/@nfdi4plants/exceljs).\n\n## Installation\n\n### F#\n\nProject\n\u0060\u0060\u0060shell\ndotnet add package FsSpreadsheet.Net\n\u0060\u0060\u0060\n\nScript\n\u0060\u0060\u0060fsharp\n#r \u0022nuget: FsSpreadsheet.Net\u0022\n\nopen FsSpreadsheet\nopen FsSpreadsheet.Net\n\u0060\u0060\u0060\n\n### Javascript\n\n\u0060\u0060\u0060shell\nnpm install @fslab/fsspreadsheet\n\u0060\u0060\u0060\n\n### Python\n\n\u0060\u0060\u0060shell\npip install fsspreadsheet\n\u0060\u0060\u0060\n\n## Usage_Xlsx_IO\n\n### F#\n\n\u0060\u0060\u0060fsharp\nopen FsSpreadsheet\nopen FsSpreadsheet.Net\n\nlet path = \u0022path/to/spreadsheet.xlsx\u0022\n\nlet wb = FsWorkbook.fromXlsxFile(path)\n\nlet newPath = \u0022path/to/new/spreadsheet.xlsx\u0022\n\nwb.ToXlsxFile(newPath)\n\u0060\u0060\u0060\n\n### Javascript\n\n\u0060\u0060\u0060javascript\nimport { Xlsx } from \u0027@fslab/fsspreadsheet/Xlsx.js\u0027;\n\nconst path = \u0022path/to/spreadsheet.xlsx\u0022\n\nconst wb = Xlsx.fromXlsxFile(path)\n\nconst newPath = \u0022path/to/new/spreadsheet.xlsx\u0022\n\nXlsx.toXlsxFile(newPath,wb)\n\u0060\u0060\u0060\n\n### Python\n\n\u0060\u0060\u0060python\nfrom fsspreadsheet.xlsx import Xlsx\n\npath = \u0022path/to/spreadsheet.xlsx\u0022\n\nwb = Xlsx.from_xlsx_file(path)\n\nnewPath = \u0022path/to/new/spreadsheet.xlsx\u0022\n\nXlsx.to_xlsx_file(newPath,wb)\n\u0060\u0060\u0060\n\n\n## Usage_Json_IO\n\n### F#\n\n\u0060\u0060\u0060fsharp\nopen FsSpreadsheet\nopen FsSpreadsheet.Net\n\nlet path = \u0022path/to/spreadsheet.json\u0022\n\nlet wb = FsWorkbook.fromJsonFile(path)\n\nlet newPath = \u0022path/to/new/spreadsheet.json\u0022\n\nwb.ToJsonFile(newPath)\n\u0060\u0060\u0060\n\n### Javascript\n\n\u0060\u0060\u0060javascript\nimport { Json } from \u0027@fslab/fsspreadsheet/Json.js\u0027;\n\nconst path = \u0022path/to/spreadsheet.json\u0022\n\nconst wb = Json.fromJsonFile(path)\n\nconst newPath = \u0022path/to/new/spreadsheet.json\u0022\n\nJson.toJsonFile(newPath,wb)\n\u0060\u0060\u0060\n\n### Python\n\n\u0060\u0060\u0060python\nfrom fsspreadsheet.json import Json\n\npath = \u0022path/to/spreadsheet.json\u0022\n\nwb = Json.from_json_file(path)\n\nnewPath = \u0022path/to/new/spreadsheet.json\u0022\n\nJson.to_json_file(newPath,wb)\n\u0060\u0060\u0060\n"}] \ No newline at end of file +[{"uri":"/FsSpreadsheet/reference/fsspreadsheet.html","title":"FsSpreadsheet","content":"CellReference \nDictionary \nEnhancements \nFsCellAux \nRange \nSheetBuilder \nDataType \nFsAddress \nFsCell \nFsCellsCollection \nFsColumn \nFsRange \nFsRangeAddress \nFsRangeBase \nFsRangeColumn \nFsRangeRow \nFsRow \nFsTable \nFsTableField \nFsTableRow \nFsWorkbook \nFsWorksheet"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio.html","title":"FsSpreadsheet.CsvIO","content":"FsExtensions \nWriter"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl.html","title":"FsSpreadsheet.DSL","content":"Expression \nMessages \nOperators \nSheetEntityExtensions \nTransform \nCellBuilder \nCellElement \nColumnBuilder \nColumnElement \nColumnIndex \nDSL \nMessage \nReduceOperation \nRowBuilder \nRowElement \nRowIndex \nSheetBuilder \nSheetElement \nSheetEntity\u003C\u0027T\u003E \nTableBuilder \nTableElement \nValue \nWorkbook \nWorkbookBuilder \nWorkbookElement"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive.html","title":"FsSpreadsheet.Interactive","content":"Formatters \nFormatterKernelExtension \nFsSparseMatrix\u003C\u0027T\u003E"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js.html","title":"FsSpreadsheet.Js","content":"FsSpreadsheet \nJsCell \nJsTable \nJsWorkbook \nJsWorksheet \nJson \nXlsx"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json.html","title":"FsSpreadsheet.Json","content":"Cell \nRow \nTable \nValue \nWorkbook \nWorksheet"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net.html","title":"FsSpreadsheet.Net","content":"Cell \nCellData \nFsExtensions \nPackage \nRow \nSharedStringTable \nSheet \nSheetData \nSpreadsheet \nStylesheet \nTable \nWorkbook \nWorkbookPart \nWorksheet \nZipArchiveReader \nSST \nWriter"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py.html","title":"FsSpreadsheet.Py","content":"FsSpreadsheet \nPyCell \nPyCellType \nPyTable \nPyWorkbook \nPyWorksheet \nJson \nXlsx"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html","title":"CellReference","content":"CellReference \n\n Module containing functions to work with \u0022A1\u0022 style excel cell references.\n \nCellReference.indexPattern \nindexPattern \nCellReference.indexRegex \nindexRegex \nCellReference.colAdressToIndex \ncolAdressToIndex \nCellReference.indexToColAdress \nindexToColAdress \nCellReference.ofIndices \nofIndices \nCellReference.toIndices \ntoIndices \nCellReference.toColIndex \ntoColIndex \nCellReference.toRowIndex \ntoRowIndex \nCellReference.setColIndex \nsetColIndex \nCellReference.setRowIndex \nsetRowIndex \nCellReference.moveHorizontal \nmoveHorizontal \nCellReference.moveVertical \nmoveVertical"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#indexPattern","title":"CellReference.indexPattern","content":"CellReference.indexPattern \nindexPattern \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#indexRegex","title":"CellReference.indexRegex","content":"CellReference.indexRegex \nindexRegex \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#colAdressToIndex","title":"CellReference.colAdressToIndex","content":"CellReference.colAdressToIndex \ncolAdressToIndex \n\n Transforms excel column string indices (e.g. A, B, Z, AA, CD) to index number (starting with A = 1).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#indexToColAdress","title":"CellReference.indexToColAdress","content":"CellReference.indexToColAdress \nindexToColAdress \n\n Transforms number index to excel column string indices (e.g. A, B, Z, AA, CD) (starting with A = 1).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#ofIndices","title":"CellReference.ofIndices","content":"CellReference.ofIndices \nofIndices \n\n Maps 1 based column and row indices to \u0022A1\u0022 style reference.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#toIndices","title":"CellReference.toIndices","content":"CellReference.toIndices \ntoIndices \n\n Maps a \u0022A1\u0022 style excel cell reference to a column * row index tuple (1 Based indices).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#toColIndex","title":"CellReference.toColIndex","content":"CellReference.toColIndex \ntoColIndex \n\n Maps a \u0022A1\u0022 style excel cell reference to a column (1 Based indices).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#toRowIndex","title":"CellReference.toRowIndex","content":"CellReference.toRowIndex \ntoRowIndex \n\n Maps a \u0022A1\u0022 style excel cell reference to a row (1 Based indices).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#setColIndex","title":"CellReference.setColIndex","content":"CellReference.setColIndex \nsetColIndex \n\n Sets the column index (1 Based indices) of a \u0022A1\u0022 style excel cell reference.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#setRowIndex","title":"CellReference.setRowIndex","content":"CellReference.setRowIndex \nsetRowIndex \n\n Sets the row index (1 Based indices) of a \u0022A1\u0022 style excel cell reference.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#moveHorizontal","title":"CellReference.moveHorizontal","content":"CellReference.moveHorizontal \nmoveHorizontal \n\n Changes the column portion of a \u0022A1\u0022-style reference by the given amount (positive amount = increase and vice versa).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#moveVertical","title":"CellReference.moveVertical","content":"CellReference.moveVertical \nmoveVertical \n\n Changes the row portion of a \u0022A1\u0022-style reference by the given amount (positive amount = increase and vice versa).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dictionary.html","title":"Dictionary","content":"Dictionary \n \nDictionary.tryGet \ntryGet"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dictionary.html#tryGet","title":"Dictionary.tryGet","content":"Dictionary.tryGet \ntryGet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-enhancements.html","title":"Enhancements","content":"Enhancements \n \nEnhancements.toRangeColumns \ntoRangeColumns"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-enhancements.html#toRangeColumns","title":"Enhancements.toRangeColumns","content":"Enhancements.toRangeColumns \ntoRangeColumns \n\n Takes an FsRangeAddress and returns, for every column the range address spans, an FsRangeColumn.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellaux.html","title":"FsCellAux","content":"FsCellAux \n\n Creates an FsCell of \u0060DataType\u0060 dataType, with value of type \u0060string\u0060, and \u0060FsAddress\u0060 address.\n \nFsCellAux.boolConverter \nboolConverter"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellaux.html#boolConverter","title":"FsCellAux.boolConverter","content":"FsCellAux.boolConverter \nboolConverter \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html","title":"Range","content":"Range \n\n The areas marks the area in which the table lies. \n \nRange.ofBoundaries \nofBoundaries \nRange.toBoundaries \ntoBoundaries \nRange.rightBoundary \nrightBoundary \nRange.leftBoundary \nleftBoundary \nRange.upperBoundary \nupperBoundary \nRange.lowerBoundary \nlowerBoundary \nRange.moveHorizontal \nmoveHorizontal \nRange.moveVertical \nmoveVertical \nRange.extendRight \nextendRight \nRange.extendLeft \nextendLeft \nRange.referenceExceedsAreaRight \nreferenceExceedsAreaRight \nRange.referenceExceedsAreaLeft \nreferenceExceedsAreaLeft \nRange.referenceExceedsAreaAbove \nreferenceExceedsAreaAbove \nRange.referenceExceedsAreaBelow \nreferenceExceedsAreaBelow \nRange.referenceExceedsArea \nreferenceExceedsArea \nRange.isCorrect \nisCorrect"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#ofBoundaries","title":"Range.ofBoundaries","content":"Range.ofBoundaries \nofBoundaries \n\n Given A1-based top left start and bottom right end indices, returns a \u0022A1:A1\u0022-style area-\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#toBoundaries","title":"Range.toBoundaries","content":"Range.toBoundaries \ntoBoundaries \n\n Given a \u0022A1:A1\u0022-style area, returns A1-based cell start and end cellReferences.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#rightBoundary","title":"Range.rightBoundary","content":"Range.rightBoundary \nrightBoundary \n\n Gets the right boundary of the area.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#leftBoundary","title":"Range.leftBoundary","content":"Range.leftBoundary \nleftBoundary \n\n Gets the left boundary of the area.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#upperBoundary","title":"Range.upperBoundary","content":"Range.upperBoundary \nupperBoundary \n\n Gets the Upper boundary of the area.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#lowerBoundary","title":"Range.lowerBoundary","content":"Range.lowerBoundary \nlowerBoundary \n\n Gets the lower boundary of the area.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#moveHorizontal","title":"Range.moveHorizontal","content":"Range.moveHorizontal \nmoveHorizontal \n\n Moves both start and end of the area by the given amount (positive amount moves area to right and vice versa).\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#moveVertical","title":"Range.moveVertical","content":"Range.moveVertical \nmoveVertical \n\n Moves both start and end of the area by the given amount (positive amount moves area to right and vice versa).\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#extendRight","title":"Range.extendRight","content":"Range.extendRight \nextendRight \n\n Extends the right boundary of the area by the given amount (positive amount increases area to right and vice versa).\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#extendLeft","title":"Range.extendLeft","content":"Range.extendLeft \nextendLeft \n\n Extends the left boundary of the area by the given amount (positive amount decreases the area to left and vice versa).\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#referenceExceedsAreaRight","title":"Range.referenceExceedsAreaRight","content":"Range.referenceExceedsAreaRight \nreferenceExceedsAreaRight \n\n Returns true if the column index of the reference exceeds the right boundary of the area.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#referenceExceedsAreaLeft","title":"Range.referenceExceedsAreaLeft","content":"Range.referenceExceedsAreaLeft \nreferenceExceedsAreaLeft \n\n Returns true if the column index of the reference exceeds the left boundary of the area.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#referenceExceedsAreaAbove","title":"Range.referenceExceedsAreaAbove","content":"Range.referenceExceedsAreaAbove \nreferenceExceedsAreaAbove \n\n Returns true if the column index of the reference exceeds the upper boundary of the area.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#referenceExceedsAreaBelow","title":"Range.referenceExceedsAreaBelow","content":"Range.referenceExceedsAreaBelow \nreferenceExceedsAreaBelow \n\n Returns true if the column index of the reference exceeds the lower boundary of the area.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#referenceExceedsArea","title":"Range.referenceExceedsArea","content":"Range.referenceExceedsArea \nreferenceExceedsArea \n\n Returns true if the reference does not lie in the boundary of the area.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#isCorrect","title":"Range.isCorrect","content":"Range.isCorrect \nisCorrect \n\n Returns true if the A1:A1-style area is of correct format.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html","title":"SheetBuilder","content":"SheetBuilder \n \nSheetBuilder.FieldMap\u003C\u0027T\u003E \nFieldMap\u003C\u0027T\u003E \nSheetBuilder.Populate \nPopulate \nSheetBuilder.populate \npopulate \nSheetBuilder.Populate \nPopulate \nSheetBuilder.populate \npopulate \nSheetBuilder.createFrom \ncreateFrom \nSheetBuilder.createFrom \ncreateFrom \nSheetBuilder.PopulateTable \nPopulateTable \nSheetBuilder.createTableFrom \ncreateTableFrom \nSheetBuilder.Populate \nPopulate \nSheetBuilder.populate \npopulate \nSheetBuilder.createFrom \ncreateFrom \nSheetBuilder.createFrom \ncreateFrom \nSheetBuilder.createFrom \ncreateFrom"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#Populate","title":"SheetBuilder.Populate","content":"SheetBuilder.Populate \nPopulate \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#populate","title":"SheetBuilder.populate","content":"SheetBuilder.populate \npopulate \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#Populate","title":"SheetBuilder.Populate","content":"SheetBuilder.Populate \nPopulate \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#populate","title":"SheetBuilder.populate","content":"SheetBuilder.populate \npopulate \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#createFrom","title":"SheetBuilder.createFrom","content":"SheetBuilder.createFrom \ncreateFrom \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#createFrom","title":"SheetBuilder.createFrom","content":"SheetBuilder.createFrom \ncreateFrom \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#PopulateTable","title":"SheetBuilder.PopulateTable","content":"SheetBuilder.PopulateTable \nPopulateTable \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#createTableFrom","title":"SheetBuilder.createTableFrom","content":"SheetBuilder.createTableFrom \ncreateTableFrom \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#Populate","title":"SheetBuilder.Populate","content":"SheetBuilder.Populate \nPopulate \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#populate","title":"SheetBuilder.populate","content":"SheetBuilder.populate \npopulate \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#createFrom","title":"SheetBuilder.createFrom","content":"SheetBuilder.createFrom \ncreateFrom \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#createFrom","title":"SheetBuilder.createFrom","content":"SheetBuilder.createFrom \ncreateFrom \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#createFrom","title":"SheetBuilder.createFrom","content":"SheetBuilder.createFrom \ncreateFrom \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html","title":"FieldMap\u003C\u0027T\u003E","content":"FieldMap\u003C\u0027T\u003E \n \nFieldMap\u003C\u0027T\u003E.adjustToContents \nadjustToContents \nFieldMap\u003C\u0027T\u003E.header \nheader \nFieldMap\u003C\u0027T\u003E.header \nheader \nFieldMap\u003C\u0027T\u003E.create \ncreate \nFieldMap\u003C\u0027T\u003E.empty \nempty \nFieldMap\u003C\u0027T\u003E.field \nfield \nFieldMap\u003C\u0027T\u003E.field \nfield \nFieldMap\u003C\u0027T\u003E.field \nfield \nFieldMap\u003C\u0027T\u003E.field \nfield \nFieldMap\u003C\u0027T\u003E.field \nfield \nFieldMap\u003C\u0027T\u003E.field \nfield \nFieldMap\u003C\u0027T\u003E.field \nfield \nFieldMap\u003C\u0027T\u003E.field \nfield \nFieldMap\u003C\u0027T\u003E.field \nfield \nFieldMap\u003C\u0027T\u003E.field \nfield \nFieldMap\u003C\u0027T\u003E.CellTransformers \nCellTransformers \nFieldMap\u003C\u0027T\u003E.HeaderTransformers \nHeaderTransformers \nFieldMap\u003C\u0027T\u003E.ColumnWidth \nColumnWidth \nFieldMap\u003C\u0027T\u003E.RowHeight \nRowHeight \nFieldMap\u003C\u0027T\u003E.AdjustToContents \nAdjustToContents \nFieldMap\u003C\u0027T\u003E.Hash \nHash"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#adjustToContents","title":"FieldMap\u003C\u0027T\u003E.adjustToContents","content":"FieldMap\u003C\u0027T\u003E.adjustToContents \nadjustToContents \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#header","title":"FieldMap\u003C\u0027T\u003E.header","content":"FieldMap\u003C\u0027T\u003E.header \nheader \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#header","title":"FieldMap\u003C\u0027T\u003E.header","content":"FieldMap\u003C\u0027T\u003E.header \nheader \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#create","title":"FieldMap\u003C\u0027T\u003E.create","content":"FieldMap\u003C\u0027T\u003E.create \ncreate \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#empty","title":"FieldMap\u003C\u0027T\u003E.empty","content":"FieldMap\u003C\u0027T\u003E.empty \nempty \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#CellTransformers","title":"FieldMap\u003C\u0027T\u003E.CellTransformers","content":"FieldMap\u003C\u0027T\u003E.CellTransformers \nCellTransformers \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#HeaderTransformers","title":"FieldMap\u003C\u0027T\u003E.HeaderTransformers","content":"FieldMap\u003C\u0027T\u003E.HeaderTransformers \nHeaderTransformers \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#ColumnWidth","title":"FieldMap\u003C\u0027T\u003E.ColumnWidth","content":"FieldMap\u003C\u0027T\u003E.ColumnWidth \nColumnWidth \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#RowHeight","title":"FieldMap\u003C\u0027T\u003E.RowHeight","content":"FieldMap\u003C\u0027T\u003E.RowHeight \nRowHeight \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#AdjustToContents","title":"FieldMap\u003C\u0027T\u003E.AdjustToContents","content":"FieldMap\u003C\u0027T\u003E.AdjustToContents \nAdjustToContents \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#Hash","title":"FieldMap\u003C\u0027T\u003E.Hash","content":"FieldMap\u003C\u0027T\u003E.Hash \nHash \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-datatype.html","title":"DataType","content":"DataType \n\n Possible DataTypes used in a FsCell.\n \nDataType.InferCellValue \nInferCellValue \nDataType.String \nString \nDataType.Boolean \nBoolean \nDataType.Number \nNumber \nDataType.Date \nDate \nDataType.Empty \nEmpty"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-datatype.html#InferCellValue","title":"DataType.InferCellValue","content":"DataType.InferCellValue \nInferCellValue \n\n Returns the proper CellValues case for the given value.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-datatype.html#String","title":"DataType.String","content":"DataType.String \nString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-datatype.html#Boolean","title":"DataType.Boolean","content":"DataType.Boolean \nBoolean \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-datatype.html#Number","title":"DataType.Number","content":"DataType.Number \nNumber \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-datatype.html#Date","title":"DataType.Date","content":"DataType.Date \nDate \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-datatype.html#Empty","title":"DataType.Empty","content":"DataType.Empty \nEmpty \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html","title":"FsAddress","content":"FsAddress \n \nFsAddress.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsAddress.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsAddress.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsAddress.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsAddress.Compare \nCompare \nFsAddress.Copy \nCopy \nFsAddress.ToIndices \nToIndices \nFsAddress.UpdateIndices \nUpdateIndices \nFsAddress.Address \nAddress \nFsAddress.FixedColumn \nFixedColumn \nFsAddress.ColumnNumber \nColumnNumber \nFsAddress.RowNumber \nRowNumber \nFsAddress.FixedRow \nFixedRow \nFsAddress.compare \ncompare \nFsAddress.copy \ncopy \nFsAddress.toIndices \ntoIndices \nFsAddress.updateIndices \nupdateIndices"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#\u0060\u0060.ctor\u0060\u0060","title":"FsAddress.\u0060\u0060.ctor\u0060\u0060","content":"FsAddress.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#\u0060\u0060.ctor\u0060\u0060","title":"FsAddress.\u0060\u0060.ctor\u0060\u0060","content":"FsAddress.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#\u0060\u0060.ctor\u0060\u0060","title":"FsAddress.\u0060\u0060.ctor\u0060\u0060","content":"FsAddress.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#\u0060\u0060.ctor\u0060\u0060","title":"FsAddress.\u0060\u0060.ctor\u0060\u0060","content":"FsAddress.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#Compare","title":"FsAddress.Compare","content":"FsAddress.Compare \nCompare \nCompares the FsAddress with a given other one."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#Copy","title":"FsAddress.Copy","content":"FsAddress.Copy \nCopy \n\n Creates a deep copy of the FsAddress.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#ToIndices","title":"FsAddress.ToIndices","content":"FsAddress.ToIndices \nToIndices \nReturns the row- and the columnIndex of the FsAddress."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#UpdateIndices","title":"FsAddress.UpdateIndices","content":"FsAddress.UpdateIndices \nUpdateIndices \n\n Updates the row- and columnIndex respective to the given indices.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#Address","title":"FsAddress.Address","content":"FsAddress.Address \nAddress \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#FixedColumn","title":"FsAddress.FixedColumn","content":"FsAddress.FixedColumn \nFixedColumn \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#ColumnNumber","title":"FsAddress.ColumnNumber","content":"FsAddress.ColumnNumber \nColumnNumber \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#RowNumber","title":"FsAddress.RowNumber","content":"FsAddress.RowNumber \nRowNumber \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#FixedRow","title":"FsAddress.FixedRow","content":"FsAddress.FixedRow \nFixedRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#compare","title":"FsAddress.compare","content":"FsAddress.compare \ncompare \nChecks if 2 FsAddresses are equal."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#copy","title":"FsAddress.copy","content":"FsAddress.copy \ncopy \n\n Returns a deep copy of the given FsAddress.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#toIndices","title":"FsAddress.toIndices","content":"FsAddress.toIndices \ntoIndices \nReturns the row- and the columnIndex of a given FsAddress."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#updateIndices","title":"FsAddress.updateIndices","content":"FsAddress.updateIndices \nupdateIndices \n\n Updates the row- and columnIndex of a given FsAddress respective to the given indices.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html","title":"FsCell","content":"FsCell \n \nFsCell.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsCell.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsCell.Copy \nCopy \nFsCell.CopyFrom \nCopyFrom \nFsCell.CopyTo \nCopyTo \nFsCell.SetValueAs \nSetValueAs \nFsCell.StructurallyEquals \nStructurallyEquals \nFsCell.ValueAsBool \nValueAsBool \nFsCell.ValueAsChar \nValueAsChar \nFsCell.ValueAsDateTime \nValueAsDateTime \nFsCell.ValueAsDecimal \nValueAsDecimal \nFsCell.ValueAsDouble \nValueAsDouble \nFsCell.ValueAsFloat \nValueAsFloat \nFsCell.ValueAsGuid \nValueAsGuid \nFsCell.ValueAsInt \nValueAsInt \nFsCell.ValueAsLong \nValueAsLong \nFsCell.ValueAsString \nValueAsString \nFsCell.ValueAsUInt \nValueAsUInt \nFsCell.ValueAsULong \nValueAsULong \nFsCell.Address \nAddress \nFsCell.ColumnNumber \nColumnNumber \nFsCell.DataType \nDataType \nFsCell.Value \nValue \nFsCell.RowNumber \nRowNumber \nFsCell.copy \ncopy \nFsCell.copyFromTo \ncopyFromTo \nFsCell.create \ncreate \nFsCell.createEmpty \ncreateEmpty \nFsCell.createEmptyWithAdress \ncreateEmptyWithAdress \nFsCell.createWithAdress \ncreateWithAdress \nFsCell.createWithDataType \ncreateWithDataType \nFsCell.empty \nempty \nFsCell.getValueAsBool \ngetValueAsBool \nFsCell.getValueAsChar \ngetValueAsChar \nFsCell.getValueAsDateTime \ngetValueAsDateTime \nFsCell.getValueAsDecimal \ngetValueAsDecimal \nFsCell.getValueAsDouble \ngetValueAsDouble \nFsCell.getValueAsFloat \ngetValueAsFloat \nFsCell.getValueAsGuid \ngetValueAsGuid \nFsCell.getValueAsInt \ngetValueAsInt \nFsCell.getValueAsLong \ngetValueAsLong \nFsCell.getValueAsString \ngetValueAsString \nFsCell.getValueAsUInt \ngetValueAsUInt \nFsCell.getValueAsULong \ngetValueAsULong \nFsCell.setValueAs \nsetValueAs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#\u0060\u0060.ctor\u0060\u0060","title":"FsCell.\u0060\u0060.ctor\u0060\u0060","content":"FsCell.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#\u0060\u0060.ctor\u0060\u0060","title":"FsCell.\u0060\u0060.ctor\u0060\u0060","content":"FsCell.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#Copy","title":"FsCell.Copy","content":"FsCell.Copy \nCopy \n\n Creates a deep copy of this FsCell.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#CopyFrom","title":"FsCell.CopyFrom","content":"FsCell.CopyFrom \nCopyFrom \n\n Copies and replaces DataType and Value from a given FsCell into this one.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#CopyTo","title":"FsCell.CopyTo","content":"FsCell.CopyTo \nCopyTo \n\n Copies DataType and Value from this FsCell to a given one and replaces theirs.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#SetValueAs","title":"FsCell.SetValueAs","content":"FsCell.SetValueAs \nSetValueAs \n\n Sets the FsCell\u0027s value.\n \u003Cp class=\u0027fsdocs-para\u0027\u003EFsSpreadsheet will try to translate it to the corresponding type, if it cannot, the value will be left as a string.\u003C/p\u003E"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#StructurallyEquals","title":"FsCell.StructurallyEquals","content":"FsCell.StructurallyEquals \nStructurallyEquals \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsBool","title":"FsCell.ValueAsBool","content":"FsCell.ValueAsBool \nValueAsBool \n\n Gets the value as bool\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsChar","title":"FsCell.ValueAsChar","content":"FsCell.ValueAsChar \nValueAsChar \n\n Gets the value as char\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsDateTime","title":"FsCell.ValueAsDateTime","content":"FsCell.ValueAsDateTime \nValueAsDateTime \n\n Gets the value as DateTime\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsDecimal","title":"FsCell.ValueAsDecimal","content":"FsCell.ValueAsDecimal \nValueAsDecimal \n\n Gets the value as decimal\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsDouble","title":"FsCell.ValueAsDouble","content":"FsCell.ValueAsDouble \nValueAsDouble \n\n Gets the value as double\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsFloat","title":"FsCell.ValueAsFloat","content":"FsCell.ValueAsFloat \nValueAsFloat \n\n Gets the value as float\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsGuid","title":"FsCell.ValueAsGuid","content":"FsCell.ValueAsGuid \nValueAsGuid \n\n Gets the value as Guid\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsInt","title":"FsCell.ValueAsInt","content":"FsCell.ValueAsInt \nValueAsInt \n\n Gets the value as int\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsLong","title":"FsCell.ValueAsLong","content":"FsCell.ValueAsLong \nValueAsLong \n\n Gets the value as long\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsString","title":"FsCell.ValueAsString","content":"FsCell.ValueAsString \nValueAsString \n\n Gets the value as string\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsUInt","title":"FsCell.ValueAsUInt","content":"FsCell.ValueAsUInt \nValueAsUInt \n\n Gets the value as uint\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsULong","title":"FsCell.ValueAsULong","content":"FsCell.ValueAsULong \nValueAsULong \n\n Gets the value as ulong\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#Address","title":"FsCell.Address","content":"FsCell.Address \nAddress \n\n Gets this FsCell\u0027s address, relative to the FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ColumnNumber","title":"FsCell.ColumnNumber","content":"FsCell.ColumnNumber \nColumnNumber \n\n Gets or sets the columnIndex of the FsCell.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#DataType","title":"FsCell.DataType","content":"FsCell.DataType \nDataType \n\n Gets or sets the DataType of this FsCell\u0027s data.\n \u003Cp class=\u0027fsdocs-para\u0027\u003EChanging the data type will cause FsSpreadsheet to convert the current value to the new DataType. \u003C/p\u003E\u003Cp class=\u0027fsdocs-para\u0027\u003EAn exception will be thrown if the current value cannot be converted to the new DataType.\u003C/p\u003E"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#Value","title":"FsCell.Value","content":"FsCell.Value \nValue \n\n Gets or sets the cell\u0027s value. To get or set a strongly typed value, use the GetValue\u003CT\u003E and SetValue methods.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#RowNumber","title":"FsCell.RowNumber","content":"FsCell.RowNumber \nRowNumber \n\n Gets or sets the rowIndex of the FsCell.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#copy","title":"FsCell.copy","content":"FsCell.copy \ncopy \n\n Returns a deep copy of a given FsCell.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#copyFromTo","title":"FsCell.copyFromTo","content":"FsCell.copyFromTo \ncopyFromTo \n\n Copies and replaces DataType and Value from a source FsCell into a target FsCell. Returns the target cell.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#create","title":"FsCell.create","content":"FsCell.create \ncreate \n\n Create an FsCell from given rowNumber, colNumber, and value. Infers the DataType.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#createEmpty","title":"FsCell.createEmpty","content":"FsCell.createEmpty \ncreateEmpty \n\n Creates an empty FsCell.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#createEmptyWithAdress","title":"FsCell.createEmptyWithAdress","content":"FsCell.createEmptyWithAdress \ncreateEmptyWithAdress \n\n Creates an empty FsCell with a given FsAddress.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#createWithAdress","title":"FsCell.createWithAdress","content":"FsCell.createWithAdress \ncreateWithAdress \n\n Creates an FsCell with the given FsAdress and value. Inferes the DataType.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#createWithDataType","title":"FsCell.createWithDataType","content":"FsCell.createWithDataType \ncreateWithDataType \n\n Creates an FsCell with the given DataType, rowNumber, colNumber, and value.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#empty","title":"FsCell.empty","content":"FsCell.empty \nempty \n\n Creates an empty FsCell, set at row 0, column 0 (1-based).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsBool","title":"FsCell.getValueAsBool","content":"FsCell.getValueAsBool \ngetValueAsBool \n\n Gets the value as bool\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsChar","title":"FsCell.getValueAsChar","content":"FsCell.getValueAsChar \ngetValueAsChar \n\n Gets the value as char\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsDateTime","title":"FsCell.getValueAsDateTime","content":"FsCell.getValueAsDateTime \ngetValueAsDateTime \n\n Gets the value as DateTime\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsDecimal","title":"FsCell.getValueAsDecimal","content":"FsCell.getValueAsDecimal \ngetValueAsDecimal \n\n Gets the value as decimal\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsDouble","title":"FsCell.getValueAsDouble","content":"FsCell.getValueAsDouble \ngetValueAsDouble \n\n Gets the value as double\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsFloat","title":"FsCell.getValueAsFloat","content":"FsCell.getValueAsFloat \ngetValueAsFloat \n\n Gets the value as float\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsGuid","title":"FsCell.getValueAsGuid","content":"FsCell.getValueAsGuid \ngetValueAsGuid \n\n Gets the value as Guid\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsInt","title":"FsCell.getValueAsInt","content":"FsCell.getValueAsInt \ngetValueAsInt \n\n Gets the value as int\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsLong","title":"FsCell.getValueAsLong","content":"FsCell.getValueAsLong \ngetValueAsLong \n\n Gets the value as long\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsString","title":"FsCell.getValueAsString","content":"FsCell.getValueAsString \ngetValueAsString \n\n Gets the value as string\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsUInt","title":"FsCell.getValueAsUInt","content":"FsCell.getValueAsUInt \ngetValueAsUInt \n\n Gets the value as uint\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsULong","title":"FsCell.getValueAsULong","content":"FsCell.getValueAsULong \ngetValueAsULong \n\n Gets the value as ulong\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#setValueAs","title":"FsCell.setValueAs","content":"FsCell.setValueAs \nsetValueAs \n\n Sets an FsCell\u0027s value.\n \u003Cp class=\u0027fsdocs-para\u0027\u003EFsSpreadsheet will try to translate it to the corresponding type, if it cannot, the value will be left as a string.\u003C/p\u003E"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html","title":"FsCellsCollection","content":"FsCellsCollection \n \nFsCellsCollection.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsCellsCollection.Add \nAdd \nFsCellsCollection.Add \nAdd \nFsCellsCollection.Add \nAdd \nFsCellsCollection.Clear \nClear \nFsCellsCollection.ContainsCellAt \nContainsCellAt \nFsCellsCollection.Copy \nCopy \nFsCellsCollection.GetCells \nGetCells \nFsCellsCollection.GetCells \nGetCells \nFsCellsCollection.GetCells \nGetCells \nFsCellsCollection.GetCells \nGetCells \nFsCellsCollection.GetCells \nGetCells \nFsCellsCollection.GetCellsInColumn \nGetCellsInColumn \nFsCellsCollection.GetCellsInRow \nGetCellsInRow \nFsCellsCollection.GetFirstAddress \nGetFirstAddress \nFsCellsCollection.GetLastAddress \nGetLastAddress \nFsCellsCollection.RemoveCellAt \nRemoveCellAt \nFsCellsCollection.RemoveValueAt \nRemoveValueAt \nFsCellsCollection.TryGetCell \nTryGetCell \nFsCellsCollection.TryRemoveValueAt \nTryRemoveValueAt \nFsCellsCollection.MaxColumnNumber \nMaxColumnNumber \nFsCellsCollection.Count \nCount \nFsCellsCollection.MaxRowNumber \nMaxRowNumber \nFsCellsCollection.addCell \naddCell \nFsCellsCollection.addCellWithIndeces \naddCellWithIndeces \nFsCellsCollection.addCells \naddCells \nFsCellsCollection.containsCellAt \ncontainsCellAt \nFsCellsCollection.copy \ncopy \nFsCellsCollection.createFromCells \ncreateFromCells \nFsCellsCollection.filterCellsFromTo \nfilterCellsFromTo \nFsCellsCollection.filterCellsFromToAddress \nfilterCellsFromToAddress \nFsCellsCollection.getCells \ngetCells \nFsCellsCollection.getCellsFromTo \ngetCellsFromTo \nFsCellsCollection.getCellsFromToAddress \ngetCellsFromToAddress \nFsCellsCollection.getCellsInColumn \ngetCellsInColumn \nFsCellsCollection.getCellsInRow \ngetCellsInRow \nFsCellsCollection.getFirstAddress \ngetFirstAddress \nFsCellsCollection.getLastAddress \ngetLastAddress \nFsCellsCollection.removeCellAt \nremoveCellAt \nFsCellsCollection.removeValueAt \nremoveValueAt \nFsCellsCollection.tryGetCell \ntryGetCell \nFsCellsCollection.tryRemoveValueAt \ntryRemoveValueAt"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#\u0060\u0060.ctor\u0060\u0060","title":"FsCellsCollection.\u0060\u0060.ctor\u0060\u0060","content":"FsCellsCollection.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#Add","title":"FsCellsCollection.Add","content":"FsCellsCollection.Add \nAdd \n\n Adds FsCells to the FsCellsCollection.\n \nDerives row- and columnIndeces from the FsAddress of the FsCells."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#Add","title":"FsCellsCollection.Add","content":"FsCellsCollection.Add \nAdd \n\n Adds an FsCell to the FsCellsCollection.\n \nDerives row- and columnIndex from the FsAddress of the FsCell."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#Add","title":"FsCellsCollection.Add","content":"FsCellsCollection.Add \nAdd \n\n Adds an FsCell of given rowIndex and columnIndex to the FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#Clear","title":"FsCellsCollection.Clear","content":"FsCellsCollection.Clear \nClear \n\n Empties the whole FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#ContainsCellAt","title":"FsCellsCollection.ContainsCellAt","content":"FsCellsCollection.ContainsCellAt \nContainsCellAt \n\n Checks if an FsCell exists at given row- and columnIndex.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#Copy","title":"FsCellsCollection.Copy","content":"FsCellsCollection.Copy \nCopy \n\n Creates a deep copy of the FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetCells","title":"FsCellsCollection.GetCells","content":"FsCellsCollection.GetCells \nGetCells \n\n Returns the FsCells from given startAddress to lastAddress.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetCells","title":"FsCellsCollection.GetCells","content":"FsCellsCollection.GetCells \nGetCells \n\n Returns the FsCells from given rowStart to rowEnd and columnStart to columnEnd.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetCells","title":"FsCellsCollection.GetCells","content":"FsCellsCollection.GetCells \nGetCells \n\n Returns the FsCells from given startAddress to lastAddress and fulfilling the predicate.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetCells","title":"FsCellsCollection.GetCells","content":"FsCellsCollection.GetCells \nGetCells \n\n Returns the FsCells from given rowStart to rowEnd and columnStart to columnEnd and fulfilling the predicate.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetCells","title":"FsCellsCollection.GetCells","content":"FsCellsCollection.GetCells \nGetCells \n\n Returns all FsCells of the FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetCellsInColumn","title":"FsCellsCollection.GetCellsInColumn","content":"FsCellsCollection.GetCellsInColumn \nGetCellsInColumn \n\n Returns all FsCells in the given columnIndex.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetCellsInRow","title":"FsCellsCollection.GetCellsInRow","content":"FsCellsCollection.GetCellsInRow \nGetCellsInRow \n\n Returns all FsCells in the given rowIndex.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetFirstAddress","title":"FsCellsCollection.GetFirstAddress","content":"FsCellsCollection.GetFirstAddress \nGetFirstAddress \n\n Returns the upper left corner of the FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetLastAddress","title":"FsCellsCollection.GetLastAddress","content":"FsCellsCollection.GetLastAddress \nGetLastAddress \n\n Returns the lower right corner of the FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#RemoveCellAt","title":"FsCellsCollection.RemoveCellAt","content":"FsCellsCollection.RemoveCellAt \nRemoveCellAt \n\n Removes an FsCell of given rowIndex and columnIndex from the FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#RemoveValueAt","title":"FsCellsCollection.RemoveValueAt","content":"FsCellsCollection.RemoveValueAt \nRemoveValueAt \n\n Removes the value of an FsCell at given row- and columnIndex from the FsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#TryGetCell","title":"FsCellsCollection.TryGetCell","content":"FsCellsCollection.TryGetCell \nTryGetCell \n\n Returns the FsCell at given rowIndex and columnIndex if it exists. Otherwise returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#TryRemoveValueAt","title":"FsCellsCollection.TryRemoveValueAt","content":"FsCellsCollection.TryRemoveValueAt \nTryRemoveValueAt \n\n Removes the value of an FsCell at given row- and columnIndex if it exists from the FsCollection.\n \nDoes nothing if the row or column of given index does not exist."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#MaxColumnNumber","title":"FsCellsCollection.MaxColumnNumber","content":"FsCellsCollection.MaxColumnNumber \nMaxColumnNumber \n\n The highest columnIndex in The FsCellsCollection.\n \nDo not confuse with the number of columns in the FsCellsCollection."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#Count","title":"FsCellsCollection.Count","content":"FsCellsCollection.Count \nCount \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#MaxRowNumber","title":"FsCellsCollection.MaxRowNumber","content":"FsCellsCollection.MaxRowNumber \nMaxRowNumber \n\n The highest rowIndex in The FsCellsCollection.\n \nDo not confuse with the number of rows in the FsCellsCollection."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#addCell","title":"FsCellsCollection.addCell","content":"FsCellsCollection.addCell \naddCell \n\n Adds an FsCell to an FsCellsCollection.\n \nDerives row- and columnIndex from the FsAddress of the FsCell."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#addCellWithIndeces","title":"FsCellsCollection.addCellWithIndeces","content":"FsCellsCollection.addCellWithIndeces \naddCellWithIndeces \n\n Adds an FsCell of given rowIndex and columnIndex to an FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#addCells","title":"FsCellsCollection.addCells","content":"FsCellsCollection.addCells \naddCells \n\n Adds FsCells to an FsCellsCollection.\n \nDerives row- and columnIndeces from the FsAddress of the FsCells."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#containsCellAt","title":"FsCellsCollection.containsCellAt","content":"FsCellsCollection.containsCellAt \ncontainsCellAt \n\n Checks if an FsCell exists at given row- and columnIndex of a given FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#copy","title":"FsCellsCollection.copy","content":"FsCellsCollection.copy \ncopy \n\n Returns a deep copy of a given FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#createFromCells","title":"FsCellsCollection.createFromCells","content":"FsCellsCollection.createFromCells \ncreateFromCells \n\n Creates an FsCellsCollection from the given FsCells.\n \nDerives row- and columnIndices from the FsAddress of the FsCells."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#filterCellsFromTo","title":"FsCellsCollection.filterCellsFromTo","content":"FsCellsCollection.filterCellsFromTo \nfilterCellsFromTo \n\n Returns the FsCells from an FsCellsCollection with given rowStart to rowEnd and columnStart to columnEnd and fulfilling the predicate.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#filterCellsFromToAddress","title":"FsCellsCollection.filterCellsFromToAddress","content":"FsCellsCollection.filterCellsFromToAddress \nfilterCellsFromToAddress \n\n Returns the FsCells from an FsCellsCollection with given startAddress to lastAddress and fulfilling the predicate.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#getCells","title":"FsCellsCollection.getCells","content":"FsCellsCollection.getCells \ngetCells \n\n Returns all FsCells of the FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#getCellsFromTo","title":"FsCellsCollection.getCellsFromTo","content":"FsCellsCollection.getCellsFromTo \ngetCellsFromTo \n\n Returns the FsCells from an FsCellsCollection with given rowStart to rowEnd and columnStart to columnEnd.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#getCellsFromToAddress","title":"FsCellsCollection.getCellsFromToAddress","content":"FsCellsCollection.getCellsFromToAddress \ngetCellsFromToAddress \n\n Returns the FsCells from an FsCellsCollection with given startAddress to lastAddress.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#getCellsInColumn","title":"FsCellsCollection.getCellsInColumn","content":"FsCellsCollection.getCellsInColumn \ngetCellsInColumn \n\n Returns all FsCells in an FsCellsCollection with the given columnIndex.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#getCellsInRow","title":"FsCellsCollection.getCellsInRow","content":"FsCellsCollection.getCellsInRow \ngetCellsInRow \n\n Returns all FsCells in an FsCellsCollection with the given rowIndex.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#getFirstAddress","title":"FsCellsCollection.getFirstAddress","content":"FsCellsCollection.getFirstAddress \ngetFirstAddress \n\n Returns the upper left corner of a given FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#getLastAddress","title":"FsCellsCollection.getLastAddress","content":"FsCellsCollection.getLastAddress \ngetLastAddress \n\n Returns the lower right corner of a given FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#removeCellAt","title":"FsCellsCollection.removeCellAt","content":"FsCellsCollection.removeCellAt \nremoveCellAt \n\n Removes an FsCell of given rowIndex and columnIndex from an FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#removeValueAt","title":"FsCellsCollection.removeValueAt","content":"FsCellsCollection.removeValueAt \nremoveValueAt \n\n Removes the value of an FsCell at given row- and columnIndex from a given FsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#tryGetCell","title":"FsCellsCollection.tryGetCell","content":"FsCellsCollection.tryGetCell \ntryGetCell \n\n Returns the FsCell from an FsCellsCollection at given rowIndex and columnIndex if it exists. Otherwise returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#tryRemoveValueAt","title":"FsCellsCollection.tryRemoveValueAt","content":"FsCellsCollection.tryRemoveValueAt \ntryRemoveValueAt \n\n Removes the value of an FsCell at given row- and columnIndex if it exists from a given FsCollection.\n \nDoes nothing if the row or column of given index does not exist."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html","title":"FsColumn","content":"FsColumn \n\n Creates an FsColumn from the given FsRangeAddress, consisting of FsCells within a given FsCellsCollection, and a styleValue.\n \nThe FsCellsCollection must only cover 1 column! \nFsColumn.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsColumn.Copy \nCopy \nFsColumn.HasCellAt \nHasCellAt \nFsColumn.Item \nItem \nFsColumn.ToDenseColumn \nToDenseColumn \nFsColumn.TryItem \nTryItem \nFsColumn.MaxRowIndex \nMaxRowIndex \nFsColumn.MinRowIndex \nMinRowIndex \nFsColumn.Index \nIndex \nFsColumn.Cells \nCells \nFsColumn.copy \ncopy \nFsColumn.createAt \ncreateAt \nFsColumn.createDenseColumnOf \ncreateDenseColumnOf \nFsColumn.empty \nempty \nFsColumn.getIndex \ngetIndex \nFsColumn.hasCellAt \nhasCellAt \nFsColumn.item \nitem \nFsColumn.toDenseColumn \ntoDenseColumn \nFsColumn.tryItem \ntryItem"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#\u0060\u0060.ctor\u0060\u0060","title":"FsColumn.\u0060\u0060.ctor\u0060\u0060","content":"FsColumn.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#Copy","title":"FsColumn.Copy","content":"FsColumn.Copy \nCopy \n\n Creates a deep copy of this FsColumn.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#HasCellAt","title":"FsColumn.HasCellAt","content":"FsColumn.HasCellAt \nHasCellAt \n\n Checks if there is an FsCell at given row index.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#Item","title":"FsColumn.Item","content":"FsColumn.Item \nItem \n\n Returns the FsCell at rowIndex.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#ToDenseColumn","title":"FsColumn.ToDenseColumn","content":"FsColumn.ToDenseColumn \nToDenseColumn \n\n Transforms the FsColumn into a dense FsColumn.\n \n FsColumns are sparse by default. This means there are no FsCells present between positions with that are filled with FsCells. In dense FsColumns, such \u0022empty positions\u0022 are then filled with empty FsCells.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#TryItem","title":"FsColumn.TryItem","content":"FsColumn.TryItem \nTryItem \n\n Returns the FsCell at the given rowIndex if it exists. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#MaxRowIndex","title":"FsColumn.MaxRowIndex","content":"FsColumn.MaxRowIndex \nMaxRowIndex \n\n The number of the highest row index of the FsColumn where an FsCell exists.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#MinRowIndex","title":"FsColumn.MinRowIndex","content":"FsColumn.MinRowIndex \nMinRowIndex \n\n The number of the lowest row index of the FsColumn where an FsCell exists.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#Index","title":"FsColumn.Index","content":"FsColumn.Index \nIndex \n\n The index of the FsColumn.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#Cells","title":"FsColumn.Cells","content":"FsColumn.Cells \nCells \n\n The associated FsCells.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#copy","title":"FsColumn.copy","content":"FsColumn.copy \ncopy \n\n Returns a deep copy of a given FsColumn.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#createAt","title":"FsColumn.createAt","content":"FsColumn.createAt \ncreateAt \n\n Create an FsColumn from a given FsCellsCollection and an columnColumn.\n \nThe appropriate range of the cells (i.e. minimum colIndex and maximum colIndex) is derived from the FsCells with the matching rowIndex."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#createDenseColumnOf","title":"FsColumn.createDenseColumnOf","content":"FsColumn.createDenseColumnOf \ncreateDenseColumnOf \n\n Takes a given FsColumn and returns a new dense FsColumn from it.\n \n FsColumns are sparse by default. This means there are no FsCells present between positions with that are filled with FsCells. In dense FsColumns, such \u0022empty positions\u0022 are then filled with empty FsCells.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#empty","title":"FsColumn.empty","content":"FsColumn.empty \nempty \n\n Creates an empty FsColumn, ranging from row 0, column 0 to row 0, column (1-based).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#getIndex","title":"FsColumn.getIndex","content":"FsColumn.getIndex \ngetIndex \n\n Returns the index of the given FsColumn.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#hasCellAt","title":"FsColumn.hasCellAt","content":"FsColumn.hasCellAt \nhasCellAt \n\n Checks if there is an FsCell at given row index of a given FsColumn.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#item","title":"FsColumn.item","content":"FsColumn.item \nitem \n\n Returns the FsCell at the given rowIndex from an FsColumn.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#toDenseColumn","title":"FsColumn.toDenseColumn","content":"FsColumn.toDenseColumn \ntoDenseColumn \n\n Transforms the given FsColumn into a dense FsColumn.\n \n FsColumns are sparse by default. This means there are no FsCells present between positions with that are filled with FsCells. In dense FsColumns, such \u0022empty positions\u0022 are then filled with empty FsCells.\n \nThis is an in-place operation."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#tryItem","title":"FsColumn.tryItem","content":"FsColumn.tryItem \ntryItem \n\n Returns the FsCell at the given rowIndex if it exists in the given FsColumn. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrange.html","title":"FsRange","content":"FsRange \n \nFsRange.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsRange.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsRange.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsRange.FirstRow \nFirstRow \nFsRange.Row \nRow"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrange.html#\u0060\u0060.ctor\u0060\u0060","title":"FsRange.\u0060\u0060.ctor\u0060\u0060","content":"FsRange.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrange.html#\u0060\u0060.ctor\u0060\u0060","title":"FsRange.\u0060\u0060.ctor\u0060\u0060","content":"FsRange.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrange.html#\u0060\u0060.ctor\u0060\u0060","title":"FsRange.\u0060\u0060.ctor\u0060\u0060","content":"FsRange.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrange.html#FirstRow","title":"FsRange.FirstRow","content":"FsRange.FirstRow \nFirstRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrange.html#Row","title":"FsRange.Row","content":"FsRange.Row \nRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html","title":"FsRangeAddress","content":"FsRangeAddress \n \nFsRangeAddress.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsRangeAddress.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsRangeAddress.Copy \nCopy \nFsRangeAddress.Extend \nExtend \nFsRangeAddress.Normalize \nNormalize \nFsRangeAddress.Union \nUnion \nFsRangeAddress.LastAddress \nLastAddress \nFsRangeAddress.FirstAddress \nFirstAddress \nFsRangeAddress.Range \nRange \nFsRangeAddress.copy \ncopy"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#\u0060\u0060.ctor\u0060\u0060","title":"FsRangeAddress.\u0060\u0060.ctor\u0060\u0060","content":"FsRangeAddress.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#\u0060\u0060.ctor\u0060\u0060","title":"FsRangeAddress.\u0060\u0060.ctor\u0060\u0060","content":"FsRangeAddress.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#Copy","title":"FsRangeAddress.Copy","content":"FsRangeAddress.Copy \nCopy \n\n Creates a deep copy of this FsRangeAddress.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#Extend","title":"FsRangeAddress.Extend","content":"FsRangeAddress.Extend \nExtend \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#Normalize","title":"FsRangeAddress.Normalize","content":"FsRangeAddress.Normalize \nNormalize \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#Union","title":"FsRangeAddress.Union","content":"FsRangeAddress.Union \nUnion \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#LastAddress","title":"FsRangeAddress.LastAddress","content":"FsRangeAddress.LastAddress \nLastAddress \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#FirstAddress","title":"FsRangeAddress.FirstAddress","content":"FsRangeAddress.FirstAddress \nFirstAddress \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#Range","title":"FsRangeAddress.Range","content":"FsRangeAddress.Range \nRange \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#copy","title":"FsRangeAddress.copy","content":"FsRangeAddress.copy \ncopy \n\n Returns a deep copy of a given FsRangeAddress.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangebase.html","title":"FsRangeBase","content":"FsRangeBase \n \nFsRangeBase.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsRangeBase.Cell \nCell \nFsRangeBase.Cells \nCells \nFsRangeBase.ColumnCount \nColumnCount \nFsRangeBase.Extend \nExtend \nFsRangeBase.RowCount \nRowCount \nFsRangeBase.RangeAddress \nRangeAddress"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangebase.html#\u0060\u0060.ctor\u0060\u0060","title":"FsRangeBase.\u0060\u0060.ctor\u0060\u0060","content":"FsRangeBase.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangebase.html#Cell","title":"FsRangeBase.Cell","content":"FsRangeBase.Cell \nCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangebase.html#Cells","title":"FsRangeBase.Cells","content":"FsRangeBase.Cells \nCells \n\n Returns the FsCells of this FsRangeBase with the given FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangebase.html#ColumnCount","title":"FsRangeBase.ColumnCount","content":"FsRangeBase.ColumnCount \nColumnCount \n\n The number of columns in the FsRangeBase.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangebase.html#Extend","title":"FsRangeBase.Extend","content":"FsRangeBase.Extend \nExtend \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangebase.html#RowCount","title":"FsRangeBase.RowCount","content":"FsRangeBase.RowCount \nRowCount \n\n The number of rows in the FsRangeBase.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangebase.html#RangeAddress","title":"FsRangeBase.RangeAddress","content":"FsRangeBase.RangeAddress \nRangeAddress \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html","title":"FsRangeColumn","content":"FsRangeColumn \n \nFsRangeColumn.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsRangeColumn.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsRangeColumn.Cell \nCell \nFsRangeColumn.Cells \nCells \nFsRangeColumn.Copy \nCopy \nFsRangeColumn.FirstCell \nFirstCell \nFsRangeColumn.Index \nIndex \nFsRangeColumn.copy \ncopy \nFsRangeColumn.fromRangeAddress \nfromRangeAddress"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html#\u0060\u0060.ctor\u0060\u0060","title":"FsRangeColumn.\u0060\u0060.ctor\u0060\u0060","content":"FsRangeColumn.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html#\u0060\u0060.ctor\u0060\u0060","title":"FsRangeColumn.\u0060\u0060.ctor\u0060\u0060","content":"FsRangeColumn.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html#Cell","title":"FsRangeColumn.Cell","content":"FsRangeColumn.Cell \nCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html#Cells","title":"FsRangeColumn.Cells","content":"FsRangeColumn.Cells \nCells \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html#Copy","title":"FsRangeColumn.Copy","content":"FsRangeColumn.Copy \nCopy \n\n Creates a deep copy of this FsRangeColumn.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html#FirstCell","title":"FsRangeColumn.FirstCell","content":"FsRangeColumn.FirstCell \nFirstCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html#Index","title":"FsRangeColumn.Index","content":"FsRangeColumn.Index \nIndex \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html#copy","title":"FsRangeColumn.copy","content":"FsRangeColumn.copy \ncopy \n\n Returns a deep copy of a given FsRangeColumn.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html#fromRangeAddress","title":"FsRangeColumn.fromRangeAddress","content":"FsRangeColumn.fromRangeAddress \nfromRangeAddress \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangerow.html","title":"FsRangeRow","content":"FsRangeRow \n \nFsRangeRow.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsRangeRow.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsRangeRow.Cell \nCell \nFsRangeRow.Cells \nCells \nFsRangeRow.Index \nIndex"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangerow.html#\u0060\u0060.ctor\u0060\u0060","title":"FsRangeRow.\u0060\u0060.ctor\u0060\u0060","content":"FsRangeRow.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangerow.html#\u0060\u0060.ctor\u0060\u0060","title":"FsRangeRow.\u0060\u0060.ctor\u0060\u0060","content":"FsRangeRow.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangerow.html#Cell","title":"FsRangeRow.Cell","content":"FsRangeRow.Cell \nCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangerow.html#Cells","title":"FsRangeRow.Cells","content":"FsRangeRow.Cells \nCells \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangerow.html#Index","title":"FsRangeRow.Index","content":"FsRangeRow.Index \nIndex \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html","title":"FsRow","content":"FsRow \n\n Creates an FsRow from the given FsRangeAddress, consisting of FsCells within a given FsCellsCollection, and a styleValue.\n \nThe FsCellsCollection must only cover 1 row! \nFsRow.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsRow.Copy \nCopy \nFsRow.HasCellAt \nHasCellAt \nFsRow.InsertValueAt \nInsertValueAt \nFsRow.Item \nItem \nFsRow.ToDenseRow \nToDenseRow \nFsRow.TryItem \nTryItem \nFsRow.MaxColIndex \nMaxColIndex \nFsRow.Index \nIndex \nFsRow.Cells \nCells \nFsRow.MinColIndex \nMinColIndex \nFsRow.copy \ncopy \nFsRow.createAt \ncreateAt \nFsRow.createDenseRowOf \ncreateDenseRowOf \nFsRow.empty \nempty \nFsRow.getIndex \ngetIndex \nFsRow.hasCellAt \nhasCellAt \nFsRow.insertValueAt \ninsertValueAt \nFsRow.item \nitem \nFsRow.toDenseRow \ntoDenseRow \nFsRow.tryItem \ntryItem"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#\u0060\u0060.ctor\u0060\u0060","title":"FsRow.\u0060\u0060.ctor\u0060\u0060","content":"FsRow.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#Copy","title":"FsRow.Copy","content":"FsRow.Copy \nCopy \n\n Creates a deep copy of this FsRow.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#HasCellAt","title":"FsRow.HasCellAt","content":"FsRow.HasCellAt \nHasCellAt \n\n Checks if there is an FsCell at given column index.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#InsertValueAt","title":"FsRow.InsertValueAt","content":"FsRow.InsertValueAt \nInsertValueAt \n\n Inserts the value at columnIndex as an FsCell. If there is an FsCell at the position, this FsCells and all the ones right to it are shifted to the right.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#Item","title":"FsRow.Item","content":"FsRow.Item \nItem \n\n Returns the FsCell at columnIndex if it exists. Else creates an empty FsCell at that position.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#ToDenseRow","title":"FsRow.ToDenseRow","content":"FsRow.ToDenseRow \nToDenseRow \n\n Transforms the FsRow into a dense FsRow.\n \n FsRows are sparse by default. This means there are no FsCells present between positions with that are filled with FsCells. In dense FsRows, such \u0022empty positions\u0022 are then filled with empty FsCells.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#TryItem","title":"FsRow.TryItem","content":"FsRow.TryItem \nTryItem \n\n Returns the FsCell at the given columnIndex if it exists. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#MaxColIndex","title":"FsRow.MaxColIndex","content":"FsRow.MaxColIndex \nMaxColIndex \n\n The number of the highest column index of the FsRow where an FsCell exists.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#Index","title":"FsRow.Index","content":"FsRow.Index \nIndex \n\n The index of the FsRow.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#Cells","title":"FsRow.Cells","content":"FsRow.Cells \nCells \n\n The associated FsCells.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#MinColIndex","title":"FsRow.MinColIndex","content":"FsRow.MinColIndex \nMinColIndex \n\n The number of the lowest column index of the FsRow where an FsCell exists.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#copy","title":"FsRow.copy","content":"FsRow.copy \ncopy \n\n Returns a deep copy of a given FsRow.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#createAt","title":"FsRow.createAt","content":"FsRow.createAt \ncreateAt \n\n Creates an FsRow from a given FsCellsCollection and an rowIndex.\n \nThe appropriate range of the cells (i.e. minimum colIndex and maximum colIndex) is derived from the FsCells with the matching rowIndex."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#createDenseRowOf","title":"FsRow.createDenseRowOf","content":"FsRow.createDenseRowOf \ncreateDenseRowOf \n\n Takes a given FsRow and returns a new dense FsRow from it.\n \n FsRows are sparse by default. This means there are no FsCells present between positions with that are filled with FsCells. In dense FsRows, such \u0022empty positions\u0022 are then filled with empty FsCells.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#empty","title":"FsRow.empty","content":"FsRow.empty \nempty \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#getIndex","title":"FsRow.getIndex","content":"FsRow.getIndex \ngetIndex \n\n Returns the index of the given FsRow.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#hasCellAt","title":"FsRow.hasCellAt","content":"FsRow.hasCellAt \nhasCellAt \n\n Checks if there is an FsCell at given column index of a given FsRow.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#insertValueAt","title":"FsRow.insertValueAt","content":"FsRow.insertValueAt \ninsertValueAt \n\n Adds a value at the given row- and columnIndex to FsRow using.\n\n If a cell exists in the given position, shoves it to the right.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#item","title":"FsRow.item","content":"FsRow.item \nitem \n\n Returns the FsCell at the given columnIndex from an FsRow if it exists. Else creates an ampty FsCell at that position.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#toDenseRow","title":"FsRow.toDenseRow","content":"FsRow.toDenseRow \ntoDenseRow \n\n Transforms the given FsRow into a dense FsRow.\n \n FsRows are sparse by default. This means there are no FsCells present between positions with that are filled with FsCells. In dense FsRows, such \u0022empty positions\u0022 are then filled with empty FsCells.\n \nThis is an in-place operation."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#tryItem","title":"FsRow.tryItem","content":"FsRow.tryItem \ntryItem \n\n Returns the FsCell at the given columnIndex if it exists in the given FsRow. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html","title":"FsTable","content":"FsTable \n\n Creates an FsTable from the given name and FsRangeAddres, with totals row shown and header row shown or not, accordingly.\n \nFsTable.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsTable.AddFields \nAddFields \nFsTable.Copy \nCopy \nFsTable.Field \nField \nFsTable.GetColumns \nGetColumns \nFsTable.GetDataCellsOfColumnAt \nGetDataCellsOfColumnAt \nFsTable.GetField \nGetField \nFsTable.GetFieldAt \nGetFieldAt \nFsTable.GetFieldIndex \nGetFieldIndex \nFsTable.GetFieldNames \nGetFieldNames \nFsTable.GetFields \nGetFields \nFsTable.GetHeaderCellOfColumn \nGetHeaderCellOfColumn \nFsTable.GetHeaderCellOfColumnAt \nGetHeaderCellOfColumnAt \nFsTable.GetHeaderCellOfTableField \nGetHeaderCellOfTableField \nFsTable.GetHeaderCellOfTableFieldAt \nGetHeaderCellOfTableFieldAt \nFsTable.GetHeaderRow \nGetHeaderRow \nFsTable.GetRows \nGetRows \nFsTable.GetUniqueName \nGetUniqueName \nFsTable.HeadersRow \nHeadersRow \nFsTable.InitFields \nInitFields \nFsTable.RenameField \nRenameField \nFsTable.RescanFieldNames \nRescanFieldNames \nFsTable.RescanRange \nRescanRange \nFsTable.TryGetHeaderCellByFieldName \nTryGetHeaderCellByFieldName \nFsTable.TryGetHeaderCellOfColumn \nTryGetHeaderCellOfColumn \nFsTable.TryGetHeaderCellOfColumnAt \nTryGetHeaderCellOfColumnAt \nFsTable.TryGetHeaderCellOfTableFieldAt \nTryGetHeaderCellOfTableFieldAt \nFsTable.TryGetHeaderRow \nTryGetHeaderRow \nFsTable.Name \nName \nFsTable.ShowHeaderRow \nShowHeaderRow \nFsTable.addFields \naddFields \nFsTable.copy \ncopy \nFsTable.getDataCellsOfColumnIndexAt \ngetDataCellsOfColumnIndexAt \nFsTable.getField \ngetField \nFsTable.getHeaderCellOfColumn \ngetHeaderCellOfColumn \nFsTable.getHeaderCellOfColumnIndexAt \ngetHeaderCellOfColumnIndexAt \nFsTable.getHeaderCellOfTableField \ngetHeaderCellOfTableField \nFsTable.getHeaderCellOfTableFieldIndexAt \ngetHeaderCellOfTableFieldIndexAt \nFsTable.getUniqueNames \ngetUniqueNames \nFsTable.initFields \ninitFields \nFsTable.renameField \nrenameField \nFsTable.rescanRange \nrescanRange \nFsTable.tryGetHeaderCellByFieldName \ntryGetHeaderCellByFieldName \nFsTable.tryGetHeaderCellOfColumn \ntryGetHeaderCellOfColumn \nFsTable.tryGetHeaderCellOfColumnIndexAt \ntryGetHeaderCellOfColumnIndexAt \nFsTable.tryGetHeaderCellOfTableFieldIndexAt \ntryGetHeaderCellOfTableFieldIndexAt"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#\u0060\u0060.ctor\u0060\u0060","title":"FsTable.\u0060\u0060.ctor\u0060\u0060","content":"FsTable.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#AddFields","title":"FsTable.AddFields","content":"FsTable.AddFields \nAddFields \n\n Adds a sequence of FsTableFields to the FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#Copy","title":"FsTable.Copy","content":"FsTable.Copy \nCopy \n\n Creates a deep copy of this FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#Field","title":"FsTable.Field","content":"FsTable.Field \nField \n\n Returns the FsTableField with given name. If an FsTableField does not exist under this name in the FsTable, adds it.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetColumns","title":"FsTable.GetColumns","content":"FsTable.GetColumns \nGetColumns \n\n Returns the FsColumns from the FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetDataCellsOfColumnAt","title":"FsTable.GetDataCellsOfColumnAt","content":"FsTable.GetDataCellsOfColumnAt \nGetDataCellsOfColumnAt \n\n Returns the data cells from a given FsCellsCollection with the given colum index.\n \nColumn index must fit the FsCellsCollection, not the FsTable!"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetField","title":"FsTable.GetField","content":"FsTable.GetField \nGetField \n\n Takes a name of an FsTableField and an FsCellsCollection (belonging to the FsWorksheet of this \n FsTable) and returns the respective FsTableField.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetFieldAt","title":"FsTable.GetFieldAt","content":"FsTable.GetFieldAt \nGetFieldAt \n\n Takes the index of an FsTableField and an FsCellsCollection (belonging to the FsWorksheet of\n this FsTable) and returns the respective FsTableField.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetFieldIndex","title":"FsTable.GetFieldIndex","content":"FsTable.GetFieldIndex \nGetFieldIndex \n\n Takes a name of an FsTableField and an FsCellsCollection (belonging to the FsWorksheet of \n this FsTable) and returns the index of the respective FsTableField.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetFieldNames","title":"FsTable.GetFieldNames","content":"FsTable.GetFieldNames \nGetFieldNames \n\n Returns all fieldnames as \u0060fieldname*FsTableField\u0060 dictionary.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetFields","title":"FsTable.GetFields","content":"FsTable.GetFields \nGetFields \n\n The FsTableFields of this FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetHeaderCellOfColumn","title":"FsTable.GetHeaderCellOfColumn","content":"FsTable.GetHeaderCellOfColumn \nGetHeaderCellOfColumn \n\n Returns the header cell of a given FsRangeColumn from a given FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetHeaderCellOfColumnAt","title":"FsTable.GetHeaderCellOfColumnAt","content":"FsTable.GetHeaderCellOfColumnAt \nGetHeaderCellOfColumnAt \n\n Returns the header cell from a given FsCellsCollection with the given colum index.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetHeaderCellOfTableField","title":"FsTable.GetHeaderCellOfTableField","content":"FsTable.GetHeaderCellOfTableField \nGetHeaderCellOfTableField \n\n Returns the header cell of a given FsTableField from a given FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetHeaderCellOfTableFieldAt","title":"FsTable.GetHeaderCellOfTableFieldAt","content":"FsTable.GetHeaderCellOfTableFieldAt \nGetHeaderCellOfTableFieldAt \n\n Returns the header cell from an FsTableField with the given index using a given FsCellsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetHeaderRow","title":"FsTable.GetHeaderRow","content":"FsTable.GetHeaderRow \nGetHeaderRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetRows","title":"FsTable.GetRows","content":"FsTable.GetRows \nGetRows \n\n Returns the FsRows from the FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetUniqueName","title":"FsTable.GetUniqueName","content":"FsTable.GetUniqueName \nGetUniqueName \n\n Returns a unique name consisting of the original name and an initial offset that is raised \n if the original name with that offset is already present.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#HeadersRow","title":"FsTable.HeadersRow","content":"FsTable.HeadersRow \nHeadersRow \n\n Returns the header row as FsRangeRow. Scans for new fieldnames.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#InitFields","title":"FsTable.InitFields","content":"FsTable.InitFields \nInitFields \n\n Creates and adds FsTableFields from a sequence of field names to the FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#RenameField","title":"FsTable.RenameField","content":"FsTable.RenameField \nRenameField \n\n Renames a fieldname of the FsTable if it exists. Else fails.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#RescanFieldNames","title":"FsTable.RescanFieldNames","content":"FsTable.RescanFieldNames \nRescanFieldNames \n\n Updates the TableFields according to the range of the table and the underlying cellcollection.\n\n For this, maps over the range of the table and sets the header of the table fields to the value of the cell. If no cell value is set, the header value and the underlying cell value are set to a default value.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#RescanRange","title":"FsTable.RescanRange","content":"FsTable.RescanRange \nRescanRange \n\n Updates the FsRangeAddress of the FsTable according to the FsTableFields associated.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#TryGetHeaderCellByFieldName","title":"FsTable.TryGetHeaderCellByFieldName","content":"FsTable.TryGetHeaderCellByFieldName \nTryGetHeaderCellByFieldName \n\n Returns the header cell from an FsTableField with the given name using an FsCellsCollection in the FsTable if the cell exists.\n Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#TryGetHeaderCellOfColumn","title":"FsTable.TryGetHeaderCellOfColumn","content":"FsTable.TryGetHeaderCellOfColumn \nTryGetHeaderCellOfColumn \n\n Returns the header cell of a given FsRangeColumn from a given FsCellsCollection if the cell exists. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#TryGetHeaderCellOfColumnAt","title":"FsTable.TryGetHeaderCellOfColumnAt","content":"FsTable.TryGetHeaderCellOfColumnAt \nTryGetHeaderCellOfColumnAt \n\n Returns the header cell from a given FsCellsCollection with the given colum index if the cell exists. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#TryGetHeaderCellOfTableFieldAt","title":"FsTable.TryGetHeaderCellOfTableFieldAt","content":"FsTable.TryGetHeaderCellOfTableFieldAt \nTryGetHeaderCellOfTableFieldAt \n\n Returns the header cell from an FsTableField with the given index using a given FsCellsCollection if the cell exists.\n Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#TryGetHeaderRow","title":"FsTable.TryGetHeaderRow","content":"FsTable.TryGetHeaderRow \nTryGetHeaderRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#Name","title":"FsTable.Name","content":"FsTable.Name \nName \n\n The name of the FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#ShowHeaderRow","title":"FsTable.ShowHeaderRow","content":"FsTable.ShowHeaderRow \nShowHeaderRow \n\n Gets or sets if the header row is shown.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#addFields","title":"FsTable.addFields","content":"FsTable.addFields \naddFields \n\n Adds a sequence of FsTableFields to a given FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#copy","title":"FsTable.copy","content":"FsTable.copy \ncopy \n\n Returns a deep copy of a given FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#getDataCellsOfColumnIndexAt","title":"FsTable.getDataCellsOfColumnIndexAt","content":"FsTable.getDataCellsOfColumnIndexAt \ngetDataCellsOfColumnIndexAt \n\n Returns the data cells from a given FsCellsCollection with the given colum index in a given FsTable.\n \nColumn index must fit the FsCellsCollection, not the FsTable!"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#getField","title":"FsTable.getField","content":"FsTable.getField \ngetField \n\n Takes a name of an FsTableField and an FsCellsCollection (belonging to the FsWorksheet of this \n FsTable) and returns the respective FsTableField.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#getHeaderCellOfColumn","title":"FsTable.getHeaderCellOfColumn","content":"FsTable.getHeaderCellOfColumn \ngetHeaderCellOfColumn \n\n Returns the header cell of a given FsRangeColumn from a given FsCellsCollection in a given FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#getHeaderCellOfColumnIndexAt","title":"FsTable.getHeaderCellOfColumnIndexAt","content":"FsTable.getHeaderCellOfColumnIndexAt \ngetHeaderCellOfColumnIndexAt \n\n Returns the header cell from a given FsCellsCollection with the given colum index in a given FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#getHeaderCellOfTableField","title":"FsTable.getHeaderCellOfTableField","content":"FsTable.getHeaderCellOfTableField \ngetHeaderCellOfTableField \n\n Returns the header cell of a given FsTableField from a given FsCellsCollection in a given FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#getHeaderCellOfTableFieldIndexAt","title":"FsTable.getHeaderCellOfTableFieldIndexAt","content":"FsTable.getHeaderCellOfTableFieldIndexAt \ngetHeaderCellOfTableFieldIndexAt \n\n Returns the header cell from an FsTableField with the given index using a given FsCellsCollection in a given FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#getUniqueNames","title":"FsTable.getUniqueNames","content":"FsTable.getUniqueNames \ngetUniqueNames \n\n Returns a unique name consisting of the original name and an initial offset that is raised \n if the original name with that offset is already present.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#initFields","title":"FsTable.initFields","content":"FsTable.initFields \ninitFields \n\n Creates and adds FsTableFields from a sequence of field names to a given FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#renameField","title":"FsTable.renameField","content":"FsTable.renameField \nrenameField \n\n Renames a fieldname of the FsTable if it exists. Else fails.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#rescanRange","title":"FsTable.rescanRange","content":"FsTable.rescanRange \nrescanRange \n\n Updates the FsRangeAddress of a given FsTable according to the FsTableFields associated.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#tryGetHeaderCellByFieldName","title":"FsTable.tryGetHeaderCellByFieldName","content":"FsTable.tryGetHeaderCellByFieldName \ntryGetHeaderCellByFieldName \n\n Returns the header cell from an FsTableField with the given name using an FsCellsCollection in a given FsTable if the cell exists.\n Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#tryGetHeaderCellOfColumn","title":"FsTable.tryGetHeaderCellOfColumn","content":"FsTable.tryGetHeaderCellOfColumn \ntryGetHeaderCellOfColumn \n\n Returns the header cell of a given FsRangeColumn from a given FsCellsCollection in a given FsTable if the cell exists.\n Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#tryGetHeaderCellOfColumnIndexAt","title":"FsTable.tryGetHeaderCellOfColumnIndexAt","content":"FsTable.tryGetHeaderCellOfColumnIndexAt \ntryGetHeaderCellOfColumnIndexAt \n\n Returns the header cell from a given FsCellsCollection with the given column index in a given FsTable if the cell exists. Else\n returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#tryGetHeaderCellOfTableFieldIndexAt","title":"FsTable.tryGetHeaderCellOfTableFieldIndexAt","content":"FsTable.tryGetHeaderCellOfTableFieldIndexAt \ntryGetHeaderCellOfTableFieldIndexAt \n\n Returns the header cell from an FsTableField with the given index using a given FsCellsCollection if the cell exists\n in a given FsTable. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html","title":"FsTableField","content":"FsTableField \n\n Creates an FsTableFiled with given name, index, FsRangeColumn, totalRowLabel, and the totalsRowFunction.\n \nFsTableField.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsTableField.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsTableField.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsTableField.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsTableField.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsTableField.Copy \nCopy \nFsTableField.DataCells \nDataCells \nFsTableField.HeaderCell \nHeaderCell \nFsTableField.SetName \nSetName \nFsTableField.Name \nName \nFsTableField.Index \nIndex \nFsTableField.Column \nColumn \nFsTableField.copy \ncopy \nFsTableField.getDataCells \ngetDataCells \nFsTableField.getHeaderCell \ngetHeaderCell \nFsTableField.setName \nsetName"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#\u0060\u0060.ctor\u0060\u0060","title":"FsTableField.\u0060\u0060.ctor\u0060\u0060","content":"FsTableField.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n\n Creates an FsTableField with the given name, index, and FsRangeColumn.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#\u0060\u0060.ctor\u0060\u0060","title":"FsTableField.\u0060\u0060.ctor\u0060\u0060","content":"FsTableField.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n\n Creates an FsTableField with the given name and index.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#\u0060\u0060.ctor\u0060\u0060","title":"FsTableField.\u0060\u0060.ctor\u0060\u0060","content":"FsTableField.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n\n Creates an FsTableField with the given name.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#\u0060\u0060.ctor\u0060\u0060","title":"FsTableField.\u0060\u0060.ctor\u0060\u0060","content":"FsTableField.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n\n Creates an empty FsTableField.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#\u0060\u0060.ctor\u0060\u0060","title":"FsTableField.\u0060\u0060.ctor\u0060\u0060","content":"FsTableField.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#Copy","title":"FsTableField.Copy","content":"FsTableField.Copy \nCopy \n\n Creates a deep copy of this FsTableField.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#DataCells","title":"FsTableField.DataCells","content":"FsTableField.DataCells \nDataCells \n\n Gets the collection of data cells for this FsTableField. Excludes the header and footer cells.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#HeaderCell","title":"FsTableField.HeaderCell","content":"FsTableField.HeaderCell \nHeaderCell \n\n Returns the header cell (taken from a given FsCellsCollection) for the FsTableField if \u0060showHeaderRow\u0060 is true. Else fails.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#SetName","title":"FsTableField.SetName","content":"FsTableField.SetName \nSetName \n\n Sets the name of the FsTableField. If \u0060showHeaderRow\u0060 is true, takes the respective FsCellsCollection and renames the header cell \n according to the name of the FsTableField.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#Name","title":"FsTableField.Name","content":"FsTableField.Name \nName \n\n The name of this FsTableField.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#Index","title":"FsTableField.Index","content":"FsTableField.Index \nIndex \n\n Gets or sets the 0-based index of the FsTableField inside the associated FsTable. \n Sets the associated FsRangeColumn\u0027s column index accordingly.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#Column","title":"FsTableField.Column","content":"FsTableField.Column \nColumn \n\n Gets or sets the FsRangeColumn of this FsTableField.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#copy","title":"FsTableField.copy","content":"FsTableField.copy \ncopy \n\n Returns a deep copy of a given FsTableField.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#getDataCells","title":"FsTableField.getDataCells","content":"FsTableField.getDataCells \ngetDataCells \n\n Gets the collection of data cells for a given FsTableField. Excludes the header and footer cells.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#getHeaderCell","title":"FsTableField.getHeaderCell","content":"FsTableField.getHeaderCell \ngetHeaderCell \n\n Returns the header cell (taken from an FsCellsCollection) for a given FsTableField if \u0060showHeaderRow\u0060 is true. Else fails.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#setName","title":"FsTableField.setName","content":"FsTableField.setName \nsetName \n\n Sets the name of a given FsTableField. If \u0060showHeaderRow\u0060 is true, takes the respective FsCellsCollection and renames the header cell \n according to the name of the FsTableField.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablerow.html","title":"FsTableRow","content":"FsTableRow \n \nFsTableRow.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablerow.html#\u0060\u0060.ctor\u0060\u0060","title":"FsTableRow.\u0060\u0060.ctor\u0060\u0060","content":"FsTableRow.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html","title":"FsWorkbook","content":"FsWorkbook \n\n Creates an empty FsWorkbook.\n \nFsWorkbook.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsWorkbook.AddWorksheet \nAddWorksheet \nFsWorkbook.AddWorksheets \nAddWorksheets \nFsWorkbook.Copy \nCopy \nFsWorkbook.GetTables \nGetTables \nFsWorkbook.GetWorksheetAt \nGetWorksheetAt \nFsWorkbook.GetWorksheetByName \nGetWorksheetByName \nFsWorkbook.GetWorksheets \nGetWorksheets \nFsWorkbook.InitWorksheet \nInitWorksheet \nFsWorkbook.RemoveWorksheet \nRemoveWorksheet \nFsWorkbook.TryGetWorksheetAt \nTryGetWorksheetAt \nFsWorkbook.TryGetWorksheetByName \nTryGetWorksheetByName \nFsWorkbook.addWorksheet \naddWorksheet \nFsWorkbook.addWorksheets \naddWorksheets \nFsWorkbook.copy \ncopy \nFsWorkbook.getTables \ngetTables \nFsWorkbook.getWorksheetAt \ngetWorksheetAt \nFsWorkbook.getWorksheetByName \ngetWorksheetByName \nFsWorkbook.getWorksheets \ngetWorksheets \nFsWorkbook.initWorksheet \ninitWorksheet \nFsWorkbook.removeWorksheet \nremoveWorksheet \nFsWorkbook.tryGetWorksheetAt \ntryGetWorksheetAt \nFsWorkbook.tryGetWorksheetByName \ntryGetWorksheetByName"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#\u0060\u0060.ctor\u0060\u0060","title":"FsWorkbook.\u0060\u0060.ctor\u0060\u0060","content":"FsWorkbook.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#AddWorksheet","title":"FsWorkbook.AddWorksheet","content":"FsWorkbook.AddWorksheet \nAddWorksheet \n\n Adds a given FsWorksheet to the FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#AddWorksheets","title":"FsWorkbook.AddWorksheets","content":"FsWorkbook.AddWorksheets \nAddWorksheets \n\n Adds a collection of FsWorksheets to the FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#Copy","title":"FsWorkbook.Copy","content":"FsWorkbook.Copy \nCopy \n\n Creates a deep copy of this FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#GetTables","title":"FsWorkbook.GetTables","content":"FsWorkbook.GetTables \nGetTables \n\n Returns all FsTables from the FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#GetWorksheetAt","title":"FsWorkbook.GetWorksheetAt","content":"FsWorkbook.GetWorksheetAt \nGetWorksheetAt \n\n Returns the FsWorksheet with the given 1 based index.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#GetWorksheetByName","title":"FsWorkbook.GetWorksheetByName","content":"FsWorkbook.GetWorksheetByName \nGetWorksheetByName \n\n Returns the FsWorksheet with the given name.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#GetWorksheets","title":"FsWorkbook.GetWorksheets","content":"FsWorkbook.GetWorksheets \nGetWorksheets \n\n Returns all FsWorksheets.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#InitWorksheet","title":"FsWorkbook.InitWorksheet","content":"FsWorkbook.InitWorksheet \nInitWorksheet \n\n Creates an empty FsWorksheet with given name and adds it to the FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#RemoveWorksheet","title":"FsWorkbook.RemoveWorksheet","content":"FsWorkbook.RemoveWorksheet \nRemoveWorksheet \n\n Removes an FsWorksheet with given name.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#TryGetWorksheetAt","title":"FsWorkbook.TryGetWorksheetAt","content":"FsWorkbook.TryGetWorksheetAt \nTryGetWorksheetAt \n\n Returns the FsWorksheet with the given 1 based index if it exists. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#TryGetWorksheetByName","title":"FsWorkbook.TryGetWorksheetByName","content":"FsWorkbook.TryGetWorksheetByName \nTryGetWorksheetByName \n\n Returns the FsWorksheet with the given name if it exists in the FsWorkbook. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#addWorksheet","title":"FsWorkbook.addWorksheet","content":"FsWorkbook.addWorksheet \naddWorksheet \n\n Adds an FsWorksheet to an FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#addWorksheets","title":"FsWorkbook.addWorksheets","content":"FsWorkbook.addWorksheets \naddWorksheets \n\n Adds a collection of FsWorksheets to an FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#copy","title":"FsWorkbook.copy","content":"FsWorkbook.copy \ncopy \n\n Returns a deep copy of a given FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#getTables","title":"FsWorkbook.getTables","content":"FsWorkbook.getTables \ngetTables \n\n Returns all FsTables from an FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#getWorksheetAt","title":"FsWorkbook.getWorksheetAt","content":"FsWorkbook.getWorksheetAt \ngetWorksheetAt \n\n Returns the FsWorksheet with the given the given 1 based indexk.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#getWorksheetByName","title":"FsWorkbook.getWorksheetByName","content":"FsWorkbook.getWorksheetByName \ngetWorksheetByName \n\n Returns the FsWorksheet with the given name from an FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#getWorksheets","title":"FsWorkbook.getWorksheets","content":"FsWorkbook.getWorksheets \ngetWorksheets \n\n Returns all FsWorksheets.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#initWorksheet","title":"FsWorkbook.initWorksheet","content":"FsWorkbook.initWorksheet \ninitWorksheet \n\n Creates an empty FsWorksheet with given name and adds it to the FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#removeWorksheet","title":"FsWorkbook.removeWorksheet","content":"FsWorkbook.removeWorksheet \nremoveWorksheet \n\n Removes an FsWorksheet with given name from an FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#tryGetWorksheetAt","title":"FsWorkbook.tryGetWorksheetAt","content":"FsWorkbook.tryGetWorksheetAt \ntryGetWorksheetAt \n\n Returns the FsWorksheet with the given 1 based index if it exists in a given FsWorkbook. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#tryGetWorksheetByName","title":"FsWorkbook.tryGetWorksheetByName","content":"FsWorkbook.tryGetWorksheetByName \ntryGetWorksheetByName \n\n Returns the FsWorksheet with the given name if it exists in a given FsWorkbook. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html","title":"FsWorksheet","content":"FsWorksheet \n\n Creates an FsWorksheet with the given name, FsRows, FsTables, and FsCellsCollection.\n \nFsWorksheet.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsWorksheet.AddCell \nAddCell \nFsWorksheet.AddCells \nAddCells \nFsWorksheet.AddTable \nAddTable \nFsWorksheet.AddTables \nAddTables \nFsWorksheet.Column \nColumn \nFsWorksheet.ColumnWithRange \nColumnWithRange \nFsWorksheet.ContainsRowAt \nContainsRowAt \nFsWorksheet.Copy \nCopy \nFsWorksheet.GetCellAt \nGetCellAt \nFsWorksheet.GetMaxRowIndex \nGetMaxRowIndex \nFsWorksheet.GetRowValuesAt \nGetRowValuesAt \nFsWorksheet.InsertBefore \nInsertBefore \nFsWorksheet.InsertValueAt \nInsertValueAt \nFsWorksheet.InsertValueAt \nInsertValueAt \nFsWorksheet.MapRowsInPlace \nMapRowsInPlace \nFsWorksheet.RemoveCellAt \nRemoveCellAt \nFsWorksheet.RemoveRowAt \nRemoveRowAt \nFsWorksheet.RemoveValueAt \nRemoveValueAt \nFsWorksheet.RescanRows \nRescanRows \nFsWorksheet.Row \nRow \nFsWorksheet.RowWithRange \nRowWithRange \nFsWorksheet.SetValueAt \nSetValueAt \nFsWorksheet.SortRows \nSortRows \nFsWorksheet.Table \nTable \nFsWorksheet.TryGetCellAt \nTryGetCellAt \nFsWorksheet.TryGetRowValuesAt \nTryGetRowValuesAt \nFsWorksheet.TryRemoveAt \nTryRemoveAt \nFsWorksheet.TryRemoveValueAt \nTryRemoveValueAt \nFsWorksheet.CellCollection \nCellCollection \nFsWorksheet.Name \nName \nFsWorksheet.Tables \nTables \nFsWorksheet.Columns \nColumns \nFsWorksheet.Rows \nRows \nFsWorksheet.addCell \naddCell \nFsWorksheet.addCells \naddCells \nFsWorksheet.addTable \naddTable \nFsWorksheet.addTables \naddTables \nFsWorksheet.appendRow \nappendRow \nFsWorksheet.containsRowAt \ncontainsRowAt \nFsWorksheet.copy \ncopy \nFsWorksheet.countRows \ncountRows \nFsWorksheet.getCellAt \ngetCellAt \nFsWorksheet.getColumnAt \ngetColumnAt \nFsWorksheet.getColumns \ngetColumns \nFsWorksheet.getMaxRowIndex \ngetMaxRowIndex \nFsWorksheet.getRowAt \ngetRowAt \nFsWorksheet.getRowValuesAt \ngetRowValuesAt \nFsWorksheet.getRows \ngetRows \nFsWorksheet.getTableByName \ngetTableByName \nFsWorksheet.init \ninit \nFsWorksheet.insertBefore \ninsertBefore \nFsWorksheet.insertValueAt \ninsertValueAt \nFsWorksheet.mapRowsInPlace \nmapRowsInPlace \nFsWorksheet.removeCellAt \nremoveCellAt \nFsWorksheet.removeRowAt \nremoveRowAt \nFsWorksheet.removeValueAt \nremoveValueAt \nFsWorksheet.setValueAt \nsetValueAt \nFsWorksheet.tryGetCellAt \ntryGetCellAt \nFsWorksheet.tryGetColumnAt \ntryGetColumnAt \nFsWorksheet.tryGetRowAfter \ntryGetRowAfter \nFsWorksheet.tryGetRowAt \ntryGetRowAt \nFsWorksheet.tryGetRowValuesAt \ntryGetRowValuesAt \nFsWorksheet.tryGetTableByName \ntryGetTableByName \nFsWorksheet.tryRemoveAt \ntryRemoveAt \nFsWorksheet.tryRemoveValueAt \ntryRemoveValueAt"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#\u0060\u0060.ctor\u0060\u0060","title":"FsWorksheet.\u0060\u0060.ctor\u0060\u0060","content":"FsWorksheet.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#AddCell","title":"FsWorksheet.AddCell","content":"FsWorksheet.AddCell \nAddCell \n\n Adds a FsCell to the FsWorksheet. !Exception if cell address already exists!\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#AddCells","title":"FsWorksheet.AddCells","content":"FsWorksheet.AddCells \nAddCells \n\n Adds a sequence of FsCells to the FsWorksheet. !Exception if cell address already exists!\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#AddTable","title":"FsWorksheet.AddTable","content":"FsWorksheet.AddTable \nAddTable \n\n Adds an FsTable to the FsWorksheet if an FsTable with the same name is not already attached.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#AddTables","title":"FsWorksheet.AddTables","content":"FsWorksheet.AddTables \nAddTables \n\n Adds a list of FsTables to the FsWorksheet. All FsTables with a name already present in the FsWorksheet are not attached.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#Column","title":"FsWorksheet.Column","content":"FsWorksheet.Column \nColumn \n\n Returns the FsColumn at the given index. If it does not exist, it is created and appended first.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#ColumnWithRange","title":"FsWorksheet.ColumnWithRange","content":"FsWorksheet.ColumnWithRange \nColumnWithRange \n\n Returns the FsColumn at the given FsRangeAddress. If it does not exist, it is created and appended first.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#ContainsRowAt","title":"FsWorksheet.ContainsRowAt","content":"FsWorksheet.ContainsRowAt \nContainsRowAt \n\n Returns true if the FsWorksheet contains an FsRow with the given rowIndex.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#Copy","title":"FsWorksheet.Copy","content":"FsWorksheet.Copy \nCopy \n\n Returns a copy of the FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#GetCellAt","title":"FsWorksheet.GetCellAt","content":"FsWorksheet.GetCellAt \nGetCellAt \n\n Returns the FsCell at the given row- and column index. Index is 1 based!\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#GetMaxRowIndex","title":"FsWorksheet.GetMaxRowIndex","content":"FsWorksheet.GetMaxRowIndex \nGetMaxRowIndex \n\n Returns the highest index of any FsRow.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#GetRowValuesAt","title":"FsWorksheet.GetRowValuesAt","content":"FsWorksheet.GetRowValuesAt \nGetRowValuesAt \n\n Gets the string values of the FsRow at the given 1-based rowIndex.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#InsertBefore","title":"FsWorksheet.InsertBefore","content":"FsWorksheet.InsertBefore \nInsertBefore \n\n Inserts an FsRow into the FsWorksheet before a reference FsRow.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#InsertValueAt","title":"FsWorksheet.InsertValueAt","content":"FsWorksheet.InsertValueAt \nInsertValueAt \n\n Adds a value at the given row- and columnIndex to the FsWorksheet.\n\n If a cell exists at the given postion, it is shoved to the right.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#InsertValueAt","title":"FsWorksheet.InsertValueAt","content":"FsWorksheet.InsertValueAt \nInsertValueAt \n\n Adds a value at the given row- and columnIndex to the FsWorksheet.\n\n If a cell exists at the given postion, it is shoved to the right.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#MapRowsInPlace","title":"FsWorksheet.MapRowsInPlace","content":"FsWorksheet.MapRowsInPlace \nMapRowsInPlace \n\n Applies function f to all FsRows and returns the modified FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#RemoveCellAt","title":"FsWorksheet.RemoveCellAt","content":"FsWorksheet.RemoveCellAt \nRemoveCellAt \n\n Removes the value at the given row- and columnIndex from the FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#RemoveRowAt","title":"FsWorksheet.RemoveRowAt","content":"FsWorksheet.RemoveRowAt \nRemoveRowAt \n\n Removes the FsRow at the given rowIndex.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#RemoveValueAt","title":"FsWorksheet.RemoveValueAt","content":"FsWorksheet.RemoveValueAt \nRemoveValueAt \n\n Removes the value of an FsCell at given row- and columnIndex from the FsCollection.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#RescanRows","title":"FsWorksheet.RescanRows","content":"FsWorksheet.RescanRows \nRescanRows \n\n Checks the cell collection and recreate the whole set of rows, so that all cells are placed in a row\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#Row","title":"FsWorksheet.Row","content":"FsWorksheet.Row \nRow \n\n Returns the FsRow at the given index. If it does not exist, it is created and appended first.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#RowWithRange","title":"FsWorksheet.RowWithRange","content":"FsWorksheet.RowWithRange \nRowWithRange \n\n Returns the FsRow at the given FsRangeAddress. If it does not exist, it is created and appended first.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#SetValueAt","title":"FsWorksheet.SetValueAt","content":"FsWorksheet.SetValueAt \nSetValueAt \n\n Adds a value at the given row- and columnIndex.\n\n If an FsCell exists at the given position, overwrites it.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#SortRows","title":"FsWorksheet.SortRows","content":"FsWorksheet.SortRows \nSortRows \n\n Sorts the FsRows by their rowIndex.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#Table","title":"FsWorksheet.Table","content":"FsWorksheet.Table \nTable \n\n Returns the FsTable with the given tableName, rangeAddress, and showHeaderRow parameters. If it does not exist yet, it gets created and appended first.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#TryGetCellAt","title":"FsWorksheet.TryGetCellAt","content":"FsWorksheet.TryGetCellAt \nTryGetCellAt \n\n Returns the FsCell at the given row- and columnIndex if the FsCell exists, else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#TryGetRowValuesAt","title":"FsWorksheet.TryGetRowValuesAt","content":"FsWorksheet.TryGetRowValuesAt \nTryGetRowValuesAt \n\n Gets the string values at the given 1-based rowIndex of the FsRow if it exists, else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#TryRemoveAt","title":"FsWorksheet.TryRemoveAt","content":"FsWorksheet.TryRemoveAt \nTryRemoveAt \n\n Removes the FsRow at a given rowIndex of the FsWorksheet if the FsRow exists.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#TryRemoveValueAt","title":"FsWorksheet.TryRemoveValueAt","content":"FsWorksheet.TryRemoveValueAt \nTryRemoveValueAt \n\n Removes the value of an FsCell at given row- and columnIndex if it exists from the FsCollection.\n \nDoes nothing if the row or column of given index does not exist."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#CellCollection","title":"FsWorksheet.CellCollection","content":"FsWorksheet.CellCollection \nCellCollection \n\n The FsCellCollection of the FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#Name","title":"FsWorksheet.Name","content":"FsWorksheet.Name \nName \n\n The name of the FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#Tables","title":"FsWorksheet.Tables","content":"FsWorksheet.Tables \nTables \n\n The FsTables of the FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#Columns","title":"FsWorksheet.Columns","content":"FsWorksheet.Columns \nColumns \n\n The FsColumns of the FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#Rows","title":"FsWorksheet.Rows","content":"FsWorksheet.Rows \nRows \n\n The FsRows of the FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#addCell","title":"FsWorksheet.addCell","content":"FsWorksheet.addCell \naddCell \n\n Adds a FsCell to the FsWorksheet. !Exception if cell address already exists!\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#addCells","title":"FsWorksheet.addCells","content":"FsWorksheet.addCells \naddCells \n\n Adds a sequence of FsCells to the FsWorksheet. !Exception if cell address already exists!\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#addTable","title":"FsWorksheet.addTable","content":"FsWorksheet.addTable \naddTable \n\n Adds an FsTable to the FsWorksheet if an FsTable with the same name is not already attached.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#addTables","title":"FsWorksheet.addTables","content":"FsWorksheet.addTables \naddTables \n\n Adds a list of FsTables to an FsWorksheet. All FsTables with a name already present in the FsWorksheet are not attached.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#appendRow","title":"FsWorksheet.appendRow","content":"FsWorksheet.appendRow \nappendRow \n\n Appends an FsRow to an FsWorksheet if the rowIndex is not already taken.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#containsRowAt","title":"FsWorksheet.containsRowAt","content":"FsWorksheet.containsRowAt \ncontainsRowAt \n\n Returns true if the FsWorksheet contains an FsRow with the given rowIndex.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#copy","title":"FsWorksheet.copy","content":"FsWorksheet.copy \ncopy \n\n Returns a copy of a given FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#countRows","title":"FsWorksheet.countRows","content":"FsWorksheet.countRows \ncountRows \n\n Returns the number of FsRows contained in the FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#getCellAt","title":"FsWorksheet.getCellAt","content":"FsWorksheet.getCellAt \ngetCellAt \n\n Returns the FsCell at the given row- and columnIndex of a given FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#getColumnAt","title":"FsWorksheet.getColumnAt","content":"FsWorksheet.getColumnAt \ngetColumnAt \n\n Returns the FsColumn at the given columnIndex of an FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#getColumns","title":"FsWorksheet.getColumns","content":"FsWorksheet.getColumns \ngetColumns \n\n Returns the FsColumns of a given FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#getMaxRowIndex","title":"FsWorksheet.getMaxRowIndex","content":"FsWorksheet.getMaxRowIndex \ngetMaxRowIndex \n\n Returns the highest index of any FsRow in a given FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#getRowAt","title":"FsWorksheet.getRowAt","content":"FsWorksheet.getRowAt \ngetRowAt \n\n Returns the FsRow at the given rowIndex of an FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#getRowValuesAt","title":"FsWorksheet.getRowValuesAt","content":"FsWorksheet.getRowValuesAt \ngetRowValuesAt \n\n Gets the string values of the FsRow at the given 1-based rowIndex of a given FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#getRows","title":"FsWorksheet.getRows","content":"FsWorksheet.getRows \ngetRows \n\n Returns the FsRows of a given FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#getTableByName","title":"FsWorksheet.getTableByName","content":"FsWorksheet.getTableByName \ngetTableByName \n\n Returns the FsTable of the given name from an FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#init","title":"FsWorksheet.init","content":"FsWorksheet.init \ninit \n\n Creates an empty FsWorksheet with the given name.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#insertBefore","title":"FsWorksheet.insertBefore","content":"FsWorksheet.insertBefore \ninsertBefore \n\n Inserts an FsRow into the FsWorksheet before a reference FsRow.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#insertValueAt","title":"FsWorksheet.insertValueAt","content":"FsWorksheet.insertValueAt \ninsertValueAt \n\n Adds a value at the given row- and columnIndex to a given FsWorksheet.\n\n If an FsCell exists at the given position, it is shoved to the right.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#mapRowsInPlace","title":"FsWorksheet.mapRowsInPlace","content":"FsWorksheet.mapRowsInPlace \nmapRowsInPlace \n\n Applies function f in a given FsWorksheet to all FsRows and returns the modified FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#removeCellAt","title":"FsWorksheet.removeCellAt","content":"FsWorksheet.removeCellAt \nremoveCellAt \n\n Removes the value at the given row- and columnIndex from an FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#removeRowAt","title":"FsWorksheet.removeRowAt","content":"FsWorksheet.removeRowAt \nremoveRowAt \n\n Removes the FsRow at a given rowIndex of an FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#removeValueAt","title":"FsWorksheet.removeValueAt","content":"FsWorksheet.removeValueAt \nremoveValueAt \n\n Removes the value of an FsCell at given row- and columnIndex from the FsCollection of a given FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#setValueAt","title":"FsWorksheet.setValueAt","content":"FsWorksheet.setValueAt \nsetValueAt \n\n Adds a value at the given row- and columnIndex of a given FsWorksheet.\n\n If an FsCell exists at the given position, it is overwritten.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#tryGetCellAt","title":"FsWorksheet.tryGetCellAt","content":"FsWorksheet.tryGetCellAt \ntryGetCellAt \n\n Returns the FsCell at the given row- and columnIndex of a given FsWorksheet if the FsCell exists, else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#tryGetColumnAt","title":"FsWorksheet.tryGetColumnAt","content":"FsWorksheet.tryGetColumnAt \ntryGetColumnAt \n\n Returns the FsColumn at the given columnIndex of an FsWorksheet if it exists, else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#tryGetRowAfter","title":"FsWorksheet.tryGetRowAfter","content":"FsWorksheet.tryGetRowAfter \ntryGetRowAfter \n\n Returns the FsRow matching or exceeding the given rowIndex if it exists, else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#tryGetRowAt","title":"FsWorksheet.tryGetRowAt","content":"FsWorksheet.tryGetRowAt \ntryGetRowAt \n\n Returns the FsRow at the given rowIndex of an FsWorksheet if it exists, else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#tryGetRowValuesAt","title":"FsWorksheet.tryGetRowValuesAt","content":"FsWorksheet.tryGetRowValuesAt \ntryGetRowValuesAt \n\n Takes an FsWorksheet and gets the string values at the given 1-based rowIndex of the FsRow if it exists, else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#tryGetTableByName","title":"FsWorksheet.tryGetTableByName","content":"FsWorksheet.tryGetTableByName \ntryGetTableByName \n\n Returns the FsTable of the given name from an FsWorksheet if it exists. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#tryRemoveAt","title":"FsWorksheet.tryRemoveAt","content":"FsWorksheet.tryRemoveAt \ntryRemoveAt \n\n Removes the FsRow at a given rowIndex of an FsWorksheet if the FsRow exists.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#tryRemoveValueAt","title":"FsWorksheet.tryRemoveValueAt","content":"FsWorksheet.tryRemoveValueAt \ntryRemoveValueAt \n\n Removes the value of an FsCell at given row- and columnIndex if it exists from the FsCollection of a given FsWorksheet.\n \nDoes nothing if the row or column of given index does not exist."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html","title":"FsExtensions","content":"FsExtensions \n \nFsExtensions.ToSparseRow \nToSparseRow \nFsExtensions.ToSparseTable \nToSparseTable \nFsExtensions.ToTableString \nToTableString \nFsExtensions.ToCsvStream \nToCsvStream \nFsExtensions.ToCsvBytes \nToCsvBytes \nFsExtensions.ToCsvFile \nToCsvFile \nFsExtensions.toCsvStream \ntoCsvStream \nFsExtensions.toCsvBytes \ntoCsvBytes \nFsExtensions.toCsvFile \ntoCsvFile"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#ToSparseRow","title":"FsExtensions.ToSparseRow","content":"FsExtensions.ToSparseRow \nToSparseRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#ToSparseTable","title":"FsExtensions.ToSparseTable","content":"FsExtensions.ToSparseTable \nToSparseTable \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#ToTableString","title":"FsExtensions.ToTableString","content":"FsExtensions.ToTableString \nToTableString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#ToCsvStream","title":"FsExtensions.ToCsvStream","content":"FsExtensions.ToCsvStream \nToCsvStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#ToCsvBytes","title":"FsExtensions.ToCsvBytes","content":"FsExtensions.ToCsvBytes \nToCsvBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#ToCsvFile","title":"FsExtensions.ToCsvFile","content":"FsExtensions.ToCsvFile \nToCsvFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#toCsvStream","title":"FsExtensions.toCsvStream","content":"FsExtensions.toCsvStream \ntoCsvStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#toCsvBytes","title":"FsExtensions.toCsvBytes","content":"FsExtensions.toCsvBytes \ntoCsvBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#toCsvFile","title":"FsExtensions.toCsvFile","content":"FsExtensions.toCsvFile \ntoCsvFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-writer.html","title":"Writer","content":"Writer \n \nWriter.toCsvBytes \ntoCsvBytes \nWriter.toCsvFile \ntoCsvFile \nWriter.toCsvStream \ntoCsvStream"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-writer.html#toCsvBytes","title":"Writer.toCsvBytes","content":"Writer.toCsvBytes \ntoCsvBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-writer.html#toCsvFile","title":"Writer.toCsvFile","content":"Writer.toCsvFile \ntoCsvFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-writer.html#toCsvStream","title":"Writer.toCsvStream","content":"Writer.toCsvStream \ntoCsvStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression.html","title":"Expression","content":"Expression \n \nExpression.ExpressionSource\u003C\u0027T\u003E \nExpressionSource\u003C\u0027T\u003E \nExpression.OptionalSource\u003C\u0027T\u003E \nOptionalSource\u003C\u0027T\u003E \nExpression.RequiredSource\u003C\u0027T\u003E \nRequiredSource\u003C\u0027T\u003E \nExpression.eval \neval"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression.html#eval","title":"Expression.eval","content":"Expression.eval \neval \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression-expressionsource-1.html","title":"ExpressionSource\u003C\u0027T\u003E","content":"ExpressionSource\u003C\u0027T\u003E \n \nExpressionSource\u003C\u0027T\u003E.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nExpressionSource\u003C\u0027T\u003E.Source \nSource"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression-expressionsource-1.html#\u0060\u0060.ctor\u0060\u0060","title":"ExpressionSource\u003C\u0027T\u003E.\u0060\u0060.ctor\u0060\u0060","content":"ExpressionSource\u003C\u0027T\u003E.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression-expressionsource-1.html#Source","title":"ExpressionSource\u003C\u0027T\u003E.Source","content":"ExpressionSource\u003C\u0027T\u003E.Source \nSource \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression-optionalsource-1.html","title":"OptionalSource\u003C\u0027T\u003E","content":"OptionalSource\u003C\u0027T\u003E \n \nOptionalSource\u003C\u0027T\u003E.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nOptionalSource\u003C\u0027T\u003E.Source \nSource"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression-optionalsource-1.html#\u0060\u0060.ctor\u0060\u0060","title":"OptionalSource\u003C\u0027T\u003E.\u0060\u0060.ctor\u0060\u0060","content":"OptionalSource\u003C\u0027T\u003E.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression-optionalsource-1.html#Source","title":"OptionalSource\u003C\u0027T\u003E.Source","content":"OptionalSource\u003C\u0027T\u003E.Source \nSource \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression-requiredsource-1.html","title":"RequiredSource\u003C\u0027T\u003E","content":"RequiredSource\u003C\u0027T\u003E \n \nRequiredSource\u003C\u0027T\u003E.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nRequiredSource\u003C\u0027T\u003E.Source \nSource"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression-requiredsource-1.html#\u0060\u0060.ctor\u0060\u0060","title":"RequiredSource\u003C\u0027T\u003E.\u0060\u0060.ctor\u0060\u0060","content":"RequiredSource\u003C\u0027T\u003E.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression-requiredsource-1.html#Source","title":"RequiredSource\u003C\u0027T\u003E.Source","content":"RequiredSource\u003C\u0027T\u003E.Source \nSource \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-messages.html","title":"Messages","content":"Messages \n \nMessages.format \nformat \nMessages.fail \nfail"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-messages.html#format","title":"Messages.format","content":"Messages.format \nformat \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-messages.html#fail","title":"Messages.fail","content":"Messages.fail \nfail \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html","title":"Operators","content":"Operators \n \nOperators.parseExpression \nparseExpression \nOperators.parseOption \nparseOption \nOperators.parseResult \nparseResult \nOperators.parseAny \nparseAny \nOperators.(~\u002B.) \n(~\u002B.) \nOperators.(~-.) \n(~-.) \nOperators.(\u002B.) \n(\u002B.) \nOperators.(-.) \n(-.) \nOperators.optional \noptional \nOperators.required \nrequired"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#parseExpression","title":"Operators.parseExpression","content":"Operators.parseExpression \nparseExpression \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#parseOption","title":"Operators.parseOption","content":"Operators.parseOption \nparseOption \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#parseResult","title":"Operators.parseResult","content":"Operators.parseResult \nparseResult \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#parseAny","title":"Operators.parseAny","content":"Operators.parseAny \nparseAny \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#(~\u002B.)","title":"Operators.(~\u002B.)","content":"Operators.(~\u002B.) \n(~\u002B.) \n\n Required value operator\n\n If expression does fail, returns a missing required value\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#(~-.)","title":"Operators.(~-.)","content":"Operators.(~-.) \n(~-.) \n\n Optional value operator\n\n If expression does fail, returns a missing optional value\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#(\u002B.)","title":"Operators.(\u002B.)","content":"Operators.(\u002B.) \n(\u002B.) \n\n Required value operator\n\n If expression does fail, returns a missing required value\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#(-.)","title":"Operators.(-.)","content":"Operators.(-.) \n(-.) \n\n Optional value operator\n\n If expression does fail, returns a missing optional value\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#optional","title":"Operators.optional","content":"Operators.optional \noptional \n\n Optional operators for cell, row, column and sheet expressions\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#required","title":"Operators.required","content":"Operators.required \nrequired \n\n Required operators for cell, row, column and sheet expressions\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentityextensions.html","title":"SheetEntityExtensions","content":"SheetEntityExtensions \n \nSheetEntityExtensions.Value \nValue \nSheetEntityExtensions.Value \nValue"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentityextensions.html#Value","title":"SheetEntityExtensions.Value","content":"SheetEntityExtensions.Value \nValue \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentityextensions.html#Value","title":"SheetEntityExtensions.Value","content":"SheetEntityExtensions.Value \nValue \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-transform.html","title":"Transform","content":"Transform \n \nTransform.splitRowsAndColumns \nsplitRowsAndColumns \nTransform.Parse \nParse"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-transform.html#splitRowsAndColumns","title":"Transform.splitRowsAndColumns","content":"Transform.splitRowsAndColumns \nsplitRowsAndColumns \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-transform.html#Parse","title":"Transform.Parse","content":"Transform.Parse \nParse \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html","title":"CellBuilder","content":"CellBuilder \n \nCellBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nCellBuilder.AsCellElement \nAsCellElement \nCellBuilder.Combine \nCombine \nCellBuilder.Combine \nCombine \nCellBuilder.Combine \nCombine \nCellBuilder.Combine \nCombine \nCellBuilder.Combine \nCombine \nCellBuilder.Combine \nCombine \nCellBuilder.Combine \nCombine \nCellBuilder.Combine \nCombine \nCellBuilder.Combine \nCombine \nCellBuilder.Delay \nDelay \nCellBuilder.For \nFor \nCellBuilder.Quote \nQuote \nCellBuilder.Run \nRun \nCellBuilder.Run \nRun \nCellBuilder.Run \nRun \nCellBuilder.SignMessages \nSignMessages \nCellBuilder.Yield \nYield \nCellBuilder.Yield \nYield \nCellBuilder.Yield \nYield \nCellBuilder.Yield \nYield \nCellBuilder.Yield \nYield \nCellBuilder.Yield \nYield \nCellBuilder.Yield \nYield \nCellBuilder.Yield \nYield \nCellBuilder.Yield \nYield \nCellBuilder.YieldFrom \nYieldFrom \nCellBuilder.Zero \nZero \nCellBuilder.Empty \nEmpty"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#\u0060\u0060.ctor\u0060\u0060","title":"CellBuilder.\u0060\u0060.ctor\u0060\u0060","content":"CellBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#AsCellElement","title":"CellBuilder.AsCellElement","content":"CellBuilder.AsCellElement \nAsCellElement \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Delay","title":"CellBuilder.Delay","content":"CellBuilder.Delay \nDelay \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#For","title":"CellBuilder.For","content":"CellBuilder.For \nFor \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Quote","title":"CellBuilder.Quote","content":"CellBuilder.Quote \nQuote \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Run","title":"CellBuilder.Run","content":"CellBuilder.Run \nRun \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Run","title":"CellBuilder.Run","content":"CellBuilder.Run \nRun \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Run","title":"CellBuilder.Run","content":"CellBuilder.Run \nRun \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#SignMessages","title":"CellBuilder.SignMessages","content":"CellBuilder.SignMessages \nSignMessages \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#YieldFrom","title":"CellBuilder.YieldFrom","content":"CellBuilder.YieldFrom \nYieldFrom \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Zero","title":"CellBuilder.Zero","content":"CellBuilder.Zero \nZero \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Empty","title":"CellBuilder.Empty","content":"CellBuilder.Empty \nEmpty \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellelement.html","title":"CellElement","content":"CellElement \n \nCellElement.Item1 \nItem1 \nCellElement.Item2 \nItem2"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellelement.html#Item1","title":"CellElement.Item1","content":"CellElement.Item1 \nItem1 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellelement.html#Item2","title":"CellElement.Item2","content":"CellElement.Item2 \nItem2 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html","title":"ColumnBuilder","content":"ColumnBuilder \n \nColumnBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nColumnBuilder.Combine \nCombine \nColumnBuilder.Combine \nCombine \nColumnBuilder.Combine \nCombine \nColumnBuilder.Combine \nCombine \nColumnBuilder.Combine \nCombine \nColumnBuilder.Combine \nCombine \nColumnBuilder.Combine \nCombine \nColumnBuilder.Combine \nCombine \nColumnBuilder.Combine \nCombine \nColumnBuilder.Delay \nDelay \nColumnBuilder.For \nFor \nColumnBuilder.Quote \nQuote \nColumnBuilder.Run \nRun \nColumnBuilder.Run \nRun \nColumnBuilder.Run \nRun \nColumnBuilder.SignMessages \nSignMessages \nColumnBuilder.Yield \nYield \nColumnBuilder.Yield \nYield \nColumnBuilder.Yield \nYield \nColumnBuilder.Yield \nYield \nColumnBuilder.Yield \nYield \nColumnBuilder.Yield \nYield \nColumnBuilder.Yield \nYield \nColumnBuilder.Yield \nYield \nColumnBuilder.Yield \nYield \nColumnBuilder.Yield \nYield \nColumnBuilder.Yield \nYield \nColumnBuilder.Yield \nYield \nColumnBuilder.Yield \nYield \nColumnBuilder.YieldFrom \nYieldFrom \nColumnBuilder.Zero \nZero \nColumnBuilder.Empty \nEmpty"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#\u0060\u0060.ctor\u0060\u0060","title":"ColumnBuilder.\u0060\u0060.ctor\u0060\u0060","content":"ColumnBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Delay","title":"ColumnBuilder.Delay","content":"ColumnBuilder.Delay \nDelay \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#For","title":"ColumnBuilder.For","content":"ColumnBuilder.For \nFor \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Quote","title":"ColumnBuilder.Quote","content":"ColumnBuilder.Quote \nQuote \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Run","title":"ColumnBuilder.Run","content":"ColumnBuilder.Run \nRun \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Run","title":"ColumnBuilder.Run","content":"ColumnBuilder.Run \nRun \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Run","title":"ColumnBuilder.Run","content":"ColumnBuilder.Run \nRun \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#SignMessages","title":"ColumnBuilder.SignMessages","content":"ColumnBuilder.SignMessages \nSignMessages \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#YieldFrom","title":"ColumnBuilder.YieldFrom","content":"ColumnBuilder.YieldFrom \nYieldFrom \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Zero","title":"ColumnBuilder.Zero","content":"ColumnBuilder.Zero \nZero \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Empty","title":"ColumnBuilder.Empty","content":"ColumnBuilder.Empty \nEmpty \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnelement.html","title":"ColumnElement","content":"ColumnElement \n \nColumnElement.IndexedCell \nIndexedCell \nColumnElement.UnindexedCell \nUnindexedCell"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnelement.html#IndexedCell","title":"ColumnElement.IndexedCell","content":"ColumnElement.IndexedCell \nIndexedCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnelement.html#UnindexedCell","title":"ColumnElement.UnindexedCell","content":"ColumnElement.UnindexedCell \nUnindexedCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnindex.html","title":"ColumnIndex","content":"ColumnIndex \n \nColumnIndex.Index \nIndex \nColumnIndex.Col \nCol"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnindex.html#Index","title":"ColumnIndex.Index","content":"ColumnIndex.Index \nIndex \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnindex.html#Col","title":"ColumnIndex.Col","content":"ColumnIndex.Col \nCol \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html","title":"DSL","content":"DSL \n \nDSL.dropCell \ndropCell \nDSL.dropColumn \ndropColumn \nDSL.dropRow \ndropRow \nDSL.dropSheet \ndropSheet \nDSL.dropWorkbook \ndropWorkbook \nDSL.opt \nopt \nDSL.opt \nopt \nDSL.sheet \nsheet \nDSL.table \ntable \nDSL.workbook \nworkbook \nDSL.cell \ncell \nDSL.row \nrow \nDSL.column \ncolumn"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#dropCell","title":"DSL.dropCell","content":"DSL.dropCell \ndropCell \n\n Drops the cell with the given message\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#dropColumn","title":"DSL.dropColumn","content":"DSL.dropColumn \ndropColumn \n\n Drops the column with the given message\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#dropRow","title":"DSL.dropRow","content":"DSL.dropRow \ndropRow \n\n Drops the row with the given message\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#dropSheet","title":"DSL.dropSheet","content":"DSL.dropSheet \ndropSheet \n\n Drops the sheet with the given message\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#dropWorkbook","title":"DSL.dropWorkbook","content":"DSL.dropWorkbook \ndropWorkbook \n\n Drops the workbook with the given message\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#opt","title":"DSL.opt","content":"DSL.opt \nopt \n\n Transforms any given missing element expression to an optional.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#opt","title":"DSL.opt","content":"DSL.opt \nopt \n\n Transforms any given missing element to an optional.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#sheet","title":"DSL.sheet","content":"DSL.sheet \nsheet \n\n Create a sheet from rows, tables and columns\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#table","title":"DSL.table","content":"DSL.table \ntable \n\n Create a table from either exclusively rows or exclusively columns. \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#workbook","title":"DSL.workbook","content":"DSL.workbook \nworkbook \n\n Create a workbook from sheets\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#cell","title":"DSL.cell","content":"DSL.cell \ncell \n\n Create a cell from a value\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#row","title":"DSL.row","content":"DSL.row \nrow \n\n Create a row from cells\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#column","title":"DSL.column","content":"DSL.column \ncolumn \n\n Create a column from cells\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html","title":"Message","content":"Message \n \nMessage.AsString \nAsString \nMessage.MapText \nMapText \nMessage.TryException \nTryException \nMessage.TryText \nTryText \nMessage.IsExc \nIsExc \nMessage.IsTxt \nIsTxt \nMessage.message \nmessage \nMessage.message \nmessage \nMessage.Text \nText \nMessage.Exception \nException"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#AsString","title":"Message.AsString","content":"Message.AsString \nAsString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#MapText","title":"Message.MapText","content":"Message.MapText \nMapText \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#TryException","title":"Message.TryException","content":"Message.TryException \nTryException \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#TryText","title":"Message.TryText","content":"Message.TryText \nTryText \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#IsExc","title":"Message.IsExc","content":"Message.IsExc \nIsExc \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#IsTxt","title":"Message.IsTxt","content":"Message.IsTxt \nIsTxt \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#message","title":"Message.message","content":"Message.message \nmessage \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#message","title":"Message.message","content":"Message.message \nmessage \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#Text","title":"Message.Text","content":"Message.Text \nText \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#Exception","title":"Message.Exception","content":"Message.Exception \nException \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-reduceoperation.html","title":"ReduceOperation","content":"ReduceOperation \n \nReduceOperation.Reduce \nReduce \nReduceOperation.Concat \nConcat"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-reduceoperation.html#Reduce","title":"ReduceOperation.Reduce","content":"ReduceOperation.Reduce \nReduce \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-reduceoperation.html#Concat","title":"ReduceOperation.Concat","content":"ReduceOperation.Concat \nConcat \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html","title":"RowBuilder","content":"RowBuilder \n \nRowBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nRowBuilder.Combine \nCombine \nRowBuilder.Combine \nCombine \nRowBuilder.Combine \nCombine \nRowBuilder.Combine \nCombine \nRowBuilder.Combine \nCombine \nRowBuilder.Combine \nCombine \nRowBuilder.Combine \nCombine \nRowBuilder.Combine \nCombine \nRowBuilder.Combine \nCombine \nRowBuilder.Delay \nDelay \nRowBuilder.For \nFor \nRowBuilder.Quote \nQuote \nRowBuilder.Run \nRun \nRowBuilder.Run \nRun \nRowBuilder.Run \nRun \nRowBuilder.SignMessages \nSignMessages \nRowBuilder.Yield \nYield \nRowBuilder.Yield \nYield \nRowBuilder.Yield \nYield \nRowBuilder.Yield \nYield \nRowBuilder.Yield \nYield \nRowBuilder.Yield \nYield \nRowBuilder.Yield \nYield \nRowBuilder.Yield \nYield \nRowBuilder.Yield \nYield \nRowBuilder.Yield \nYield \nRowBuilder.Yield \nYield \nRowBuilder.Yield \nYield \nRowBuilder.Yield \nYield \nRowBuilder.YieldFrom \nYieldFrom \nRowBuilder.Zero \nZero \nRowBuilder.Empty \nEmpty"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#\u0060\u0060.ctor\u0060\u0060","title":"RowBuilder.\u0060\u0060.ctor\u0060\u0060","content":"RowBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Delay","title":"RowBuilder.Delay","content":"RowBuilder.Delay \nDelay \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#For","title":"RowBuilder.For","content":"RowBuilder.For \nFor \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Quote","title":"RowBuilder.Quote","content":"RowBuilder.Quote \nQuote \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Run","title":"RowBuilder.Run","content":"RowBuilder.Run \nRun \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Run","title":"RowBuilder.Run","content":"RowBuilder.Run \nRun \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Run","title":"RowBuilder.Run","content":"RowBuilder.Run \nRun \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#SignMessages","title":"RowBuilder.SignMessages","content":"RowBuilder.SignMessages \nSignMessages \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#YieldFrom","title":"RowBuilder.YieldFrom","content":"RowBuilder.YieldFrom \nYieldFrom \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Zero","title":"RowBuilder.Zero","content":"RowBuilder.Zero \nZero \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Empty","title":"RowBuilder.Empty","content":"RowBuilder.Empty \nEmpty \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowelement.html","title":"RowElement","content":"RowElement \n \nRowElement.IndexedCell \nIndexedCell \nRowElement.UnindexedCell \nUnindexedCell"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowelement.html#IndexedCell","title":"RowElement.IndexedCell","content":"RowElement.IndexedCell \nIndexedCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowelement.html#UnindexedCell","title":"RowElement.UnindexedCell","content":"RowElement.UnindexedCell \nUnindexedCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowindex.html","title":"RowIndex","content":"RowIndex \n \nRowIndex.Index \nIndex \nRowIndex.Row \nRow"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowindex.html#Index","title":"RowIndex.Index","content":"RowIndex.Index \nIndex \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowindex.html#Row","title":"RowIndex.Row","content":"RowIndex.Row \nRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html","title":"SheetBuilder","content":"SheetBuilder \n \nSheetBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nSheetBuilder.Combine \nCombine \nSheetBuilder.Delay \nDelay \nSheetBuilder.For \nFor \nSheetBuilder.Run \nRun \nSheetBuilder.SignMessages \nSignMessages \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.Yield \nYield \nSheetBuilder.YieldFrom \nYieldFrom \nSheetBuilder.Zero \nZero \nSheetBuilder.Empty \nEmpty"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#\u0060\u0060.ctor\u0060\u0060","title":"SheetBuilder.\u0060\u0060.ctor\u0060\u0060","content":"SheetBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Combine","title":"SheetBuilder.Combine","content":"SheetBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Delay","title":"SheetBuilder.Delay","content":"SheetBuilder.Delay \nDelay \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#For","title":"SheetBuilder.For","content":"SheetBuilder.For \nFor \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Run","title":"SheetBuilder.Run","content":"SheetBuilder.Run \nRun \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#SignMessages","title":"SheetBuilder.SignMessages","content":"SheetBuilder.SignMessages \nSignMessages \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#YieldFrom","title":"SheetBuilder.YieldFrom","content":"SheetBuilder.YieldFrom \nYieldFrom \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Zero","title":"SheetBuilder.Zero","content":"SheetBuilder.Zero \nZero \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Empty","title":"SheetBuilder.Empty","content":"SheetBuilder.Empty \nEmpty \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetelement.html","title":"SheetElement","content":"SheetElement \n \nSheetElement.Table \nTable \nSheetElement.IndexedRow \nIndexedRow \nSheetElement.UnindexedRow \nUnindexedRow \nSheetElement.IndexedColumn \nIndexedColumn \nSheetElement.UnindexedColumn \nUnindexedColumn \nSheetElement.IndexedCell \nIndexedCell \nSheetElement.UnindexedCell \nUnindexedCell"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetelement.html#Table","title":"SheetElement.Table","content":"SheetElement.Table \nTable \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetelement.html#IndexedRow","title":"SheetElement.IndexedRow","content":"SheetElement.IndexedRow \nIndexedRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetelement.html#UnindexedRow","title":"SheetElement.UnindexedRow","content":"SheetElement.UnindexedRow \nUnindexedRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetelement.html#IndexedColumn","title":"SheetElement.IndexedColumn","content":"SheetElement.IndexedColumn \nIndexedColumn \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetelement.html#UnindexedColumn","title":"SheetElement.UnindexedColumn","content":"SheetElement.UnindexedColumn \nUnindexedColumn \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetelement.html#IndexedCell","title":"SheetElement.IndexedCell","content":"SheetElement.IndexedCell \nIndexedCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetelement.html#UnindexedCell","title":"SheetElement.UnindexedCell","content":"SheetElement.UnindexedCell \nUnindexedCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentity-1.html","title":"SheetEntity\u003C\u0027T\u003E","content":"SheetEntity\u003C\u0027T\u003E \n \nSheetEntity\u003C\u0027T\u003E.Messages \nMessages \nSheetEntity\u003C\u0027T\u003E.some \nsome \nSheetEntity\u003C\u0027T\u003E.Some \nSome \nSheetEntity\u003C\u0027T\u003E.NoneOptional \nNoneOptional \nSheetEntity\u003C\u0027T\u003E.NoneRequired \nNoneRequired"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentity-1.html#Messages","title":"SheetEntity\u003C\u0027T\u003E.Messages","content":"SheetEntity\u003C\u0027T\u003E.Messages \nMessages \n\n Get messages\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentity-1.html#some","title":"SheetEntity\u003C\u0027T\u003E.some","content":"SheetEntity\u003C\u0027T\u003E.some \nsome \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentity-1.html#Some","title":"SheetEntity\u003C\u0027T\u003E.Some","content":"SheetEntity\u003C\u0027T\u003E.Some \nSome \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentity-1.html#NoneOptional","title":"SheetEntity\u003C\u0027T\u003E.NoneOptional","content":"SheetEntity\u003C\u0027T\u003E.NoneOptional \nNoneOptional \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentity-1.html#NoneRequired","title":"SheetEntity\u003C\u0027T\u003E.NoneRequired","content":"SheetEntity\u003C\u0027T\u003E.NoneRequired \nNoneRequired \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html","title":"TableBuilder","content":"TableBuilder \n \nTableBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nTableBuilder.Combine \nCombine \nTableBuilder.Delay \nDelay \nTableBuilder.For \nFor \nTableBuilder.Run \nRun \nTableBuilder.SignMessages \nSignMessages \nTableBuilder.Yield \nYield \nTableBuilder.Yield \nYield \nTableBuilder.Yield \nYield \nTableBuilder.Yield \nYield \nTableBuilder.Yield \nYield \nTableBuilder.Yield \nYield \nTableBuilder.Yield \nYield \nTableBuilder.Yield \nYield \nTableBuilder.Yield \nYield \nTableBuilder.Yield \nYield \nTableBuilder.YieldFrom \nYieldFrom \nTableBuilder.Zero \nZero \nTableBuilder.Name \nName \nTableBuilder.Empty \nEmpty"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#\u0060\u0060.ctor\u0060\u0060","title":"TableBuilder.\u0060\u0060.ctor\u0060\u0060","content":"TableBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Combine","title":"TableBuilder.Combine","content":"TableBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Delay","title":"TableBuilder.Delay","content":"TableBuilder.Delay \nDelay \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#For","title":"TableBuilder.For","content":"TableBuilder.For \nFor \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Run","title":"TableBuilder.Run","content":"TableBuilder.Run \nRun \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#SignMessages","title":"TableBuilder.SignMessages","content":"TableBuilder.SignMessages \nSignMessages \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#YieldFrom","title":"TableBuilder.YieldFrom","content":"TableBuilder.YieldFrom \nYieldFrom \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Zero","title":"TableBuilder.Zero","content":"TableBuilder.Zero \nZero \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Name","title":"TableBuilder.Name","content":"TableBuilder.Name \nName \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Empty","title":"TableBuilder.Empty","content":"TableBuilder.Empty \nEmpty \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tableelement.html","title":"TableElement","content":"TableElement \n \nTableElement.IsRow \nIsRow \nTableElement.IsColumn \nIsColumn \nTableElement.UnindexedRow \nUnindexedRow \nTableElement.UnindexedColumn \nUnindexedColumn"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tableelement.html#IsRow","title":"TableElement.IsRow","content":"TableElement.IsRow \nIsRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tableelement.html#IsColumn","title":"TableElement.IsColumn","content":"TableElement.IsColumn \nIsColumn \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tableelement.html#UnindexedRow","title":"TableElement.UnindexedRow","content":"TableElement.UnindexedRow \nUnindexedRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tableelement.html#UnindexedColumn","title":"TableElement.UnindexedColumn","content":"TableElement.UnindexedColumn \nUnindexedColumn \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-value.html","title":"Value","content":"Value \n \nValue.Item1 \nItem1 \nValue.Item2 \nItem2"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-value.html#Item1","title":"Value.Item1","content":"Value.Item1 \nItem1 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-value.html#Item2","title":"Value.Item2","content":"Value.Item2 \nItem2 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbook.html","title":"Workbook","content":"Workbook \n \nWorkbook.Workbook \nWorkbook"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbook.html#Workbook","title":"Workbook.Workbook","content":"Workbook.Workbook \nWorkbook \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html","title":"WorkbookBuilder","content":"WorkbookBuilder \n \nWorkbookBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nWorkbookBuilder.Combine \nCombine \nWorkbookBuilder.Delay \nDelay \nWorkbookBuilder.For \nFor \nWorkbookBuilder.Run \nRun \nWorkbookBuilder.SignMessages \nSignMessages \nWorkbookBuilder.Yield \nYield \nWorkbookBuilder.Yield \nYield \nWorkbookBuilder.Yield \nYield \nWorkbookBuilder.Yield \nYield \nWorkbookBuilder.Yield \nYield \nWorkbookBuilder.Yield \nYield \nWorkbookBuilder.Yield \nYield \nWorkbookBuilder.Yield \nYield \nWorkbookBuilder.YieldFrom \nYieldFrom \nWorkbookBuilder.Zero \nZero \nWorkbookBuilder.Empty \nEmpty"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#\u0060\u0060.ctor\u0060\u0060","title":"WorkbookBuilder.\u0060\u0060.ctor\u0060\u0060","content":"WorkbookBuilder.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Combine","title":"WorkbookBuilder.Combine","content":"WorkbookBuilder.Combine \nCombine \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Delay","title":"WorkbookBuilder.Delay","content":"WorkbookBuilder.Delay \nDelay \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#For","title":"WorkbookBuilder.For","content":"WorkbookBuilder.For \nFor \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Run","title":"WorkbookBuilder.Run","content":"WorkbookBuilder.Run \nRun \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#SignMessages","title":"WorkbookBuilder.SignMessages","content":"WorkbookBuilder.SignMessages \nSignMessages \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Yield","title":"WorkbookBuilder.Yield","content":"WorkbookBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Yield","title":"WorkbookBuilder.Yield","content":"WorkbookBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Yield","title":"WorkbookBuilder.Yield","content":"WorkbookBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Yield","title":"WorkbookBuilder.Yield","content":"WorkbookBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Yield","title":"WorkbookBuilder.Yield","content":"WorkbookBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Yield","title":"WorkbookBuilder.Yield","content":"WorkbookBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Yield","title":"WorkbookBuilder.Yield","content":"WorkbookBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Yield","title":"WorkbookBuilder.Yield","content":"WorkbookBuilder.Yield \nYield \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#YieldFrom","title":"WorkbookBuilder.YieldFrom","content":"WorkbookBuilder.YieldFrom \nYieldFrom \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Zero","title":"WorkbookBuilder.Zero","content":"WorkbookBuilder.Zero \nZero \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Empty","title":"WorkbookBuilder.Empty","content":"WorkbookBuilder.Empty \nEmpty \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookelement.html","title":"WorkbookElement","content":"WorkbookElement \n \nWorkbookElement.UnnamedSheet \nUnnamedSheet \nWorkbookElement.NamedSheet \nNamedSheet"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookelement.html#UnnamedSheet","title":"WorkbookElement.UnnamedSheet","content":"WorkbookElement.UnnamedSheet \nUnnamedSheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookelement.html#NamedSheet","title":"WorkbookElement.NamedSheet","content":"WorkbookElement.NamedSheet \nNamedSheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-formatters.html","title":"Formatters","content":"Formatters \n \nFormatters.formatWorkbook \nformatWorkbook \nFormatters.formatWorksheet \nformatWorksheet"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-formatters.html#formatWorkbook","title":"Formatters.formatWorkbook","content":"Formatters.formatWorkbook \nformatWorkbook \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-formatters.html#formatWorksheet","title":"Formatters.formatWorksheet","content":"Formatters.formatWorksheet \nformatWorksheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-formatterkernelextension.html","title":"FormatterKernelExtension","content":"FormatterKernelExtension \n \nFormatterKernelExtension.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-formatterkernelextension.html#\u0060\u0060.ctor\u0060\u0060","title":"FormatterKernelExtension.\u0060\u0060.ctor\u0060\u0060","content":"FormatterKernelExtension.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html","title":"FsSparseMatrix\u003C\u0027T\u003E","content":"FsSparseMatrix\u003C\u0027T\u003E \n\n A FsSparseMatrix\n \nFsSparseMatrix\u003C\u0027T\u003E.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nFsSparseMatrix\u003C\u0027T\u003E.MaxIndexForRow \nMaxIndexForRow \nFsSparseMatrix\u003C\u0027T\u003E.MinIndexForRow \nMinIndexForRow \nFsSparseMatrix\u003C\u0027T\u003E.SparseValues \nSparseValues \nFsSparseMatrix\u003C\u0027T\u003E.Item \nItem \nFsSparseMatrix\u003C\u0027T\u003E.SparseColumnValues \nSparseColumnValues \nFsSparseMatrix\u003C\u0027T\u003E.NumCols \nNumCols \nFsSparseMatrix\u003C\u0027T\u003E.SparseRowOffsets \nSparseRowOffsets \nFsSparseMatrix\u003C\u0027T\u003E.NumRows \nNumRows \nFsSparseMatrix\u003C\u0027T\u003E.init \ninit \nFsSparseMatrix\u003C\u0027T\u003E.toArray2D \ntoArray2D"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#\u0060\u0060.ctor\u0060\u0060","title":"FsSparseMatrix\u003C\u0027T\u003E.\u0060\u0060.ctor\u0060\u0060","content":"FsSparseMatrix\u003C\u0027T\u003E.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#MaxIndexForRow","title":"FsSparseMatrix\u003C\u0027T\u003E.MaxIndexForRow","content":"FsSparseMatrix\u003C\u0027T\u003E.MaxIndexForRow \nMaxIndexForRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#MinIndexForRow","title":"FsSparseMatrix\u003C\u0027T\u003E.MinIndexForRow","content":"FsSparseMatrix\u003C\u0027T\u003E.MinIndexForRow \nMinIndexForRow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#SparseValues","title":"FsSparseMatrix\u003C\u0027T\u003E.SparseValues","content":"FsSparseMatrix\u003C\u0027T\u003E.SparseValues \nSparseValues \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#Item","title":"FsSparseMatrix\u003C\u0027T\u003E.Item","content":"FsSparseMatrix\u003C\u0027T\u003E.Item \nItem \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#SparseColumnValues","title":"FsSparseMatrix\u003C\u0027T\u003E.SparseColumnValues","content":"FsSparseMatrix\u003C\u0027T\u003E.SparseColumnValues \nSparseColumnValues \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#NumCols","title":"FsSparseMatrix\u003C\u0027T\u003E.NumCols","content":"FsSparseMatrix\u003C\u0027T\u003E.NumCols \nNumCols \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#SparseRowOffsets","title":"FsSparseMatrix\u003C\u0027T\u003E.SparseRowOffsets","content":"FsSparseMatrix\u003C\u0027T\u003E.SparseRowOffsets \nSparseRowOffsets \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#NumRows","title":"FsSparseMatrix\u003C\u0027T\u003E.NumRows","content":"FsSparseMatrix\u003C\u0027T\u003E.NumRows \nNumRows \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#init","title":"FsSparseMatrix\u003C\u0027T\u003E.init","content":"FsSparseMatrix\u003C\u0027T\u003E.init \ninit \n\n Creates a matrix from a sparse sequence \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#toArray2D","title":"FsSparseMatrix\u003C\u0027T\u003E.toArray2D","content":"FsSparseMatrix\u003C\u0027T\u003E.toArray2D \ntoArray2D \n\n Returns the SparseMatrix as Array2D\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html","title":"FsSpreadsheet","content":"FsSpreadsheet \n \nFsSpreadsheet.fromXlsxFile \nfromXlsxFile \nFsSpreadsheet.fromXlsxStream \nfromXlsxStream \nFsSpreadsheet.fromXlsxBytes \nfromXlsxBytes \nFsSpreadsheet.toXlsxFile \ntoXlsxFile \nFsSpreadsheet.toXlsxStream \ntoXlsxStream \nFsSpreadsheet.toXlsxBytes \ntoXlsxBytes \nFsSpreadsheet.ToXlsxFile \nToXlsxFile \nFsSpreadsheet.ToXlsxStream \nToXlsxStream \nFsSpreadsheet.ToXlsxBytes \nToXlsxBytes \nFsSpreadsheet.fromJsonString \nfromJsonString \nFsSpreadsheet.toJsonString \ntoJsonString \nFsSpreadsheet.ToJsonString \nToJsonString"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#fromXlsxFile","title":"FsSpreadsheet.fromXlsxFile","content":"FsSpreadsheet.fromXlsxFile \nfromXlsxFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#fromXlsxStream","title":"FsSpreadsheet.fromXlsxStream","content":"FsSpreadsheet.fromXlsxStream \nfromXlsxStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#fromXlsxBytes","title":"FsSpreadsheet.fromXlsxBytes","content":"FsSpreadsheet.fromXlsxBytes \nfromXlsxBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#toXlsxFile","title":"FsSpreadsheet.toXlsxFile","content":"FsSpreadsheet.toXlsxFile \ntoXlsxFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#toXlsxStream","title":"FsSpreadsheet.toXlsxStream","content":"FsSpreadsheet.toXlsxStream \ntoXlsxStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#toXlsxBytes","title":"FsSpreadsheet.toXlsxBytes","content":"FsSpreadsheet.toXlsxBytes \ntoXlsxBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#ToXlsxFile","title":"FsSpreadsheet.ToXlsxFile","content":"FsSpreadsheet.ToXlsxFile \nToXlsxFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#ToXlsxStream","title":"FsSpreadsheet.ToXlsxStream","content":"FsSpreadsheet.ToXlsxStream \nToXlsxStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#ToXlsxBytes","title":"FsSpreadsheet.ToXlsxBytes","content":"FsSpreadsheet.ToXlsxBytes \nToXlsxBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#fromJsonString","title":"FsSpreadsheet.fromJsonString","content":"FsSpreadsheet.fromJsonString \nfromJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#toJsonString","title":"FsSpreadsheet.toJsonString","content":"FsSpreadsheet.toJsonString \ntoJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#ToJsonString","title":"FsSpreadsheet.ToJsonString","content":"FsSpreadsheet.ToJsonString \nToJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jscell.html","title":"JsCell","content":"JsCell \n \nJsCell.writeFromFsCell \nwriteFromFsCell \nJsCell.readToFsCell \nreadToFsCell"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jscell.html#writeFromFsCell","title":"JsCell.writeFromFsCell","content":"JsCell.writeFromFsCell \nwriteFromFsCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jscell.html#readToFsCell","title":"JsCell.readToFsCell","content":"JsCell.readToFsCell \nreadToFsCell \n\n \u0060worksheetName\u0060, \u0060rowIndex\u0060 and \u0060columnIndex\u0060 are only used for debugging.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jstable.html","title":"JsTable","content":"JsTable \n \nJsTable.writeFromFsTable \nwriteFromFsTable \nJsTable.readToFsTable \nreadToFsTable"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jstable.html#writeFromFsTable","title":"JsTable.writeFromFsTable","content":"JsTable.writeFromFsTable \nwriteFromFsTable \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jstable.html#readToFsTable","title":"JsTable.readToFsTable","content":"JsTable.readToFsTable \nreadToFsTable \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jsworkbook.html","title":"JsWorkbook","content":"JsWorkbook \n \nJsWorkbook.writeFromFsWorkbook \nwriteFromFsWorkbook \nJsWorkbook.readToFsWorkbook \nreadToFsWorkbook"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jsworkbook.html#writeFromFsWorkbook","title":"JsWorkbook.writeFromFsWorkbook","content":"JsWorkbook.writeFromFsWorkbook \nwriteFromFsWorkbook \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jsworkbook.html#readToFsWorkbook","title":"JsWorkbook.readToFsWorkbook","content":"JsWorkbook.readToFsWorkbook \nreadToFsWorkbook \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jsworksheet.html","title":"JsWorksheet","content":"JsWorksheet \n \nJsWorksheet.writeFromFsWorksheet \nwriteFromFsWorksheet \nJsWorksheet.readToFsWorksheet \nreadToFsWorksheet"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jsworksheet.html#writeFromFsWorksheet","title":"JsWorksheet.writeFromFsWorksheet","content":"JsWorksheet.writeFromFsWorksheet \nwriteFromFsWorksheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jsworksheet.html#readToFsWorksheet","title":"JsWorksheet.readToFsWorksheet","content":"JsWorksheet.readToFsWorksheet \nreadToFsWorksheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-json.html","title":"Json","content":"Json \n\n This does currently not correctly work if you want to use this from js\n https://github.com/fable-compiler/Fable/issues/3498\n \nJson.fromJsonString \nfromJsonString \nJson.toJsonString \ntoJsonString \nJson.tryFromJsonString \ntryFromJsonString"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-json.html#fromJsonString","title":"Json.fromJsonString","content":"Json.fromJsonString \nfromJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-json.html#toJsonString","title":"Json.toJsonString","content":"Json.toJsonString \ntoJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-json.html#tryFromJsonString","title":"Json.tryFromJsonString","content":"Json.tryFromJsonString \ntryFromJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html","title":"Xlsx","content":"Xlsx \n\n This does currently not correctly work if you want to use this from js\n https://github.com/fable-compiler/Fable/issues/3498\n \nXlsx.fromBytes \nfromBytes \nXlsx.fromFile \nfromFile \nXlsx.fromStream \nfromStream \nXlsx.fromXlsxBytes \nfromXlsxBytes \nXlsx.fromXlsxFile \nfromXlsxFile \nXlsx.fromXlsxStream \nfromXlsxStream \nXlsx.toBytes \ntoBytes \nXlsx.toFile \ntoFile \nXlsx.toStream \ntoStream \nXlsx.toXlsxBytes \ntoXlsxBytes \nXlsx.toXlsxFile \ntoXlsxFile \nXlsx.toXlsxStream \ntoXlsxStream"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#fromBytes","title":"Xlsx.fromBytes","content":"Xlsx.fromBytes \nfromBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#fromFile","title":"Xlsx.fromFile","content":"Xlsx.fromFile \nfromFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#fromStream","title":"Xlsx.fromStream","content":"Xlsx.fromStream \nfromStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#fromXlsxBytes","title":"Xlsx.fromXlsxBytes","content":"Xlsx.fromXlsxBytes \nfromXlsxBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#fromXlsxFile","title":"Xlsx.fromXlsxFile","content":"Xlsx.fromXlsxFile \nfromXlsxFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#fromXlsxStream","title":"Xlsx.fromXlsxStream","content":"Xlsx.fromXlsxStream \nfromXlsxStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#toBytes","title":"Xlsx.toBytes","content":"Xlsx.toBytes \ntoBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#toFile","title":"Xlsx.toFile","content":"Xlsx.toFile \ntoFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#toStream","title":"Xlsx.toStream","content":"Xlsx.toStream \ntoStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#toXlsxBytes","title":"Xlsx.toXlsxBytes","content":"Xlsx.toXlsxBytes \ntoXlsxBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#toXlsxFile","title":"Xlsx.toXlsxFile","content":"Xlsx.toXlsxFile \ntoXlsxFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#toXlsxStream","title":"Xlsx.toXlsxStream","content":"Xlsx.toXlsxStream \ntoXlsxStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html","title":"Cell","content":"Cell \n \nCell.column \ncolumn \nCell.value \nvalue \nCell.encode \nencode \nCell.decode \ndecode"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html#column","title":"Cell.column","content":"Cell.column \ncolumn \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html#value","title":"Cell.value","content":"Cell.value \nvalue \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html#encode","title":"Cell.encode","content":"Cell.encode \nencode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html#decode","title":"Cell.decode","content":"Cell.decode \ndecode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-row.html","title":"Row","content":"Row \n \nRow.cells \ncells \nRow.number \nnumber \nRow.encode \nencode \nRow.decode \ndecode"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-row.html#cells","title":"Row.cells","content":"Row.cells \ncells \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-row.html#number","title":"Row.number","content":"Row.number \nnumber \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-row.html#encode","title":"Row.encode","content":"Row.encode \nencode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-row.html#decode","title":"Row.decode","content":"Row.decode \ndecode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-table.html","title":"Table","content":"Table \n \nTable.name \nname \nTable.range \nrange \nTable.encode \nencode \nTable.decode \ndecode"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-table.html#name","title":"Table.name","content":"Table.name \nname \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-table.html#range","title":"Table.range","content":"Table.range \nrange \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-table.html#encode","title":"Table.encode","content":"Table.encode \nencode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-table.html#decode","title":"Table.decode","content":"Table.decode \ndecode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-value.html","title":"Value","content":"Value \n \nValue.Decode \nDecode \nValue.encode \nencode \nValue.decode \ndecode"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-value.html#encode","title":"Value.encode","content":"Value.encode \nencode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-value.html#decode","title":"Value.decode","content":"Value.decode \ndecode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-value-decode.html","title":"Decode","content":"Decode \n \nDecode.datetime \ndatetime"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-value-decode.html#datetime","title":"Decode.datetime","content":"Decode.datetime \ndatetime \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-workbook.html","title":"Workbook","content":"Workbook \n \nWorkbook.sheets \nsheets \nWorkbook.encode \nencode \nWorkbook.decode \ndecode"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-workbook.html#sheets","title":"Workbook.sheets","content":"Workbook.sheets \nsheets \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-workbook.html#encode","title":"Workbook.encode","content":"Workbook.encode \nencode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-workbook.html#decode","title":"Workbook.decode","content":"Workbook.decode \ndecode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html","title":"Worksheet","content":"Worksheet \n \nWorksheet.name \nname \nWorksheet.rows \nrows \nWorksheet.tables \ntables \nWorksheet.encode \nencode \nWorksheet.decode \ndecode"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html#name","title":"Worksheet.name","content":"Worksheet.name \nname \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html#rows","title":"Worksheet.rows","content":"Worksheet.rows \nrows \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html#tables","title":"Worksheet.tables","content":"Worksheet.tables \ntables \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html#encode","title":"Worksheet.encode","content":"Worksheet.encode \nencode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html#decode","title":"Worksheet.decode","content":"Worksheet.decode \ndecode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html","title":"Cell","content":"Cell \n\n Functions for creating and manipulating Cells.\n \nCell.CellValue \nCellValue \nCell.cellValuesToDataType \ncellValuesToDataType \nCell.empty \nempty \nCell.inferCellValue \ninferCellValue \nCell.create \ncreate \nCell.createWithFormat \ncreateWithFormat \nCell.setSpacePreserveAttribute \nsetSpacePreserveAttribute \nCell.fromValue \nfromValue \nCell.getCellContent \ngetCellContent \nCell.fromValueWithDataType \nfromValueWithDataType \nCell.getReference \ngetReference \nCell.setReference \nsetReference \nCell.tryGetType \ntryGetType \nCell.getType \ngetType \nCell.setType \nsetType \nCell.tryGetCellValue \ntryGetCellValue \nCell.getCellValue \ngetCellValue \nCell.tryGetValue \ntryGetValue \nCell.getValue \ngetValue \nCell.setValue \nsetValue \nCell.includeSharedStringValue \nincludeSharedStringValue"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#cellValuesToDataType","title":"Cell.cellValuesToDataType","content":"Cell.cellValuesToDataType \ncellValuesToDataType \n\n Takes a CellValue and returns the appropriate DataType.\n \nDataType is the FsSpreadsheet representation of the CellValue enum in OpenXml."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#empty","title":"Cell.empty","content":"Cell.empty \nempty \n\n Creates an empty Cell.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#inferCellValue","title":"Cell.inferCellValue","content":"Cell.inferCellValue \ninferCellValue \n\n Returns the proper CellValues case for the given value.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#create","title":"Cell.create","content":"Cell.create \ncreate \n\n Creates a Cell from a CellValues type case, a \u0022A1\u0022 style reference, and a CellValue containing the value string.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#createWithFormat","title":"Cell.createWithFormat","content":"Cell.createWithFormat \ncreateWithFormat \n\n Creates a Cell from a CellValues type case, a \u0022A1\u0022 style reference, and a CellValue containing the value string.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#setSpacePreserveAttribute","title":"Cell.setSpacePreserveAttribute","content":"Cell.setSpacePreserveAttribute \nsetSpacePreserveAttribute \n\n Sets the preserve attribute of a Cell.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#fromValue","title":"Cell.fromValue","content":"Cell.fromValue \nfromValue \n\n Create a cell using a shared string table, also returns the updated shared string table.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#getCellContent","title":"Cell.getCellContent","content":"Cell.getCellContent \ngetCellContent \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#fromValueWithDataType","title":"Cell.fromValueWithDataType","content":"Cell.fromValueWithDataType \nfromValueWithDataType \n\n Create a cell using a shared string table, also returns the updated shared string table.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#getReference","title":"Cell.getReference","content":"Cell.getReference \ngetReference \n\n Gets \u0022A1\u0022-style Cell reference.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#setReference","title":"Cell.setReference","content":"Cell.setReference \nsetReference \n\n Sets \u0022A1\u0022-style Cell reference.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#tryGetType","title":"Cell.tryGetType","content":"Cell.tryGetType \ntryGetType \n\n Gets Some type if existent. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#getType","title":"Cell.getType","content":"Cell.getType \ngetType \n\n Gets a Cell type.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#setType","title":"Cell.setType","content":"Cell.setType \nsetType \n\n Sets a Cell type.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#tryGetCellValue","title":"Cell.tryGetCellValue","content":"Cell.tryGetCellValue \ntryGetCellValue \n\n Gets Some CellValue if cellValue is existent. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#getCellValue","title":"Cell.getCellValue","content":"Cell.getCellValue \ngetCellValue \n\n Gets the CellValue.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#tryGetValue","title":"Cell.tryGetValue","content":"Cell.tryGetValue \ntryGetValue \n\n Maps a Cell to the value string using a shared string table.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#getValue","title":"Cell.getValue","content":"Cell.getValue \ngetValue \n\n Maps a Cell to the value string using a sharedStringTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#setValue","title":"Cell.setValue","content":"Cell.setValue \nsetValue \n\n Sets a CellValue.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#includeSharedStringValue","title":"Cell.includeSharedStringValue","content":"Cell.includeSharedStringValue \nincludeSharedStringValue \n\n Includes a value from the sharedStringTable in Cell.CellValue.Text.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell-cellvalue.html","title":"CellValue","content":"CellValue \n\n Functions for manipulating CellValues.\n \nCellValue.empty \nempty \nCellValue.create \ncreate \nCellValue.getValue \ngetValue \nCellValue.setValue \nsetValue"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell-cellvalue.html#empty","title":"CellValue.empty","content":"CellValue.empty \nempty \n\n Creates an empty CellValue.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell-cellvalue.html#create","title":"CellValue.create","content":"CellValue.create \ncreate \n\n Create a new CellValue containing the given string.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell-cellvalue.html#getValue","title":"CellValue.getValue","content":"CellValue.getValue \ngetValue \n\n Returns the value stored inside the CellValue.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell-cellvalue.html#setValue","title":"CellValue.setValue","content":"CellValue.setValue \nsetValue \n\n Sets the value inside the CellValue.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata.html","title":"CellData","content":"CellData \n\n Functions for working with CellData.\n \nCellData.CellDataValue \nCellDataValue \nCellData.CellError \nCellError \nCellData.ofCell \nofCell"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata.html#ofCell","title":"CellData.ofCell","content":"CellData.ofCell \nofCell \n\n Creates a CellDataValue from a sharedStringTable and a cell.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-celldatavalue.html","title":"CellDataValue","content":"CellDataValue \n \nCellDataValue.Number \nNumber \nCellDataValue.String \nString \nCellDataValue.Boolean \nBoolean \nCellDataValue.Date \nDate \nCellDataValue.Error \nError"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-celldatavalue.html#Number","title":"CellDataValue.Number","content":"CellDataValue.Number \nNumber \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-celldatavalue.html#String","title":"CellDataValue.String","content":"CellDataValue.String \nString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-celldatavalue.html#Boolean","title":"CellDataValue.Boolean","content":"CellDataValue.Boolean \nBoolean \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-celldatavalue.html#Date","title":"CellDataValue.Date","content":"CellDataValue.Date \nDate \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-celldatavalue.html#Error","title":"CellDataValue.Error","content":"CellDataValue.Error \nError \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html","title":"CellError","content":"CellError \n \nCellError.Null \nNull \nCellError.DIV0 \nDIV0 \nCellError.VALUE \nVALUE \nCellError.REF \nREF \nCellError.NAME \nNAME \nCellError.NUM \nNUM \nCellError.NA \nNA \nCellError.GettingDATA \nGettingDATA"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html#Null","title":"CellError.Null","content":"CellError.Null \nNull \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html#DIV0","title":"CellError.DIV0","content":"CellError.DIV0 \nDIV0 \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html#VALUE","title":"CellError.VALUE","content":"CellError.VALUE \nVALUE \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html#REF","title":"CellError.REF","content":"CellError.REF \nREF \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html#NAME","title":"CellError.NAME","content":"CellError.NAME \nNAME \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html#NUM","title":"CellError.NUM","content":"CellError.NUM \nNUM \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html#NA","title":"CellError.NA","content":"CellError.NA \nNA \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html#GettingDATA","title":"CellError.GettingDATA","content":"CellError.GettingDATA \nGettingDATA \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html","title":"FsExtensions","content":"FsExtensions \n\n Classes that extend the core FsSpreadsheet library with IO functionalities.\n \nFsExtensions.ofXlsXCell \nofXlsXCell \nFsExtensions.ofXlsxCell \nofXlsxCell \nFsExtensions.tryOfXlsxCell \ntryOfXlsxCell \nFsExtensions.toXlsxCell \ntoXlsxCell \nFsExtensions.ToXlsxTable \nToXlsxTable \nFsExtensions.toXlsxTable \ntoXlsxTable \nFsExtensions.fromXlsxTable \nfromXlsxTable \nFsExtensions.GetWorksheetOfTable \nGetWorksheetOfTable \nFsExtensions.getWorksheetOfTable \ngetWorksheetOfTable \nFsExtensions.ToXlsxWorksheet \nToXlsxWorksheet \nFsExtensions.toXlsxWorksheet \ntoXlsxWorksheet \nFsExtensions.AppendTablesToWorksheetPart \nAppendTablesToWorksheetPart \nFsExtensions.appendTablesToWorksheetPart \nappendTablesToWorksheetPart \nFsExtensions.fromSpreadsheetDocument \nfromSpreadsheetDocument \nFsExtensions.fromPackage \nfromPackage \nFsExtensions.fromXlsxStream \nfromXlsxStream \nFsExtensions.fromXlsxBytes \nfromXlsxBytes \nFsExtensions.fromXlsxFile \nfromXlsxFile \nFsExtensions.fromFile \nfromFile \nFsExtensions.tryFromJsonString \ntryFromJsonString \nFsExtensions.fromJsonString \nfromJsonString \nFsExtensions.tryFromJsonFile \ntryFromJsonFile \nFsExtensions.fromJsonFile \nfromJsonFile \nFsExtensions.ToEmptySpreadsheet \nToEmptySpreadsheet \nFsExtensions.ToXlsxStream \nToXlsxStream \nFsExtensions.toXlsxStream \ntoXlsxStream \nFsExtensions.ToXlsxBytes \nToXlsxBytes \nFsExtensions.toXlsxBytes \ntoXlsxBytes \nFsExtensions.ToXlsxFile \nToXlsxFile \nFsExtensions.ToFile \nToFile \nFsExtensions.toXlsxFile \ntoXlsxFile \nFsExtensions.toFile \ntoFile \nFsExtensions.toJsonString \ntoJsonString \nFsExtensions.toJsonFile \ntoJsonFile \nFsExtensions.ToJsonString \nToJsonString \nFsExtensions.ToJsonFile \nToJsonFile"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ofXlsXCell","title":"FsExtensions.ofXlsXCell","content":"FsExtensions.ofXlsXCell \nofXlsXCell \n\n Converts a given CellValues to the respective DataType.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ofXlsxCell","title":"FsExtensions.ofXlsxCell","content":"FsExtensions.ofXlsxCell \nofXlsxCell \n\n Creates an FsCell on the basis of an XlsxCell. Uses a SharedStringTable if present to get the XlsxCell\u0027s value.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#tryOfXlsxCell","title":"FsExtensions.tryOfXlsxCell","content":"FsExtensions.tryOfXlsxCell \ntryOfXlsxCell \n\n Creates an FsCell on the basis of an XlsxCell. Uses a SharedStringTable if present to get the XlsxCell\u0027s value.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toXlsxCell","title":"FsExtensions.toXlsxCell","content":"FsExtensions.toXlsxCell \ntoXlsxCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToXlsxTable","title":"FsExtensions.ToXlsxTable","content":"FsExtensions.ToXlsxTable \nToXlsxTable \n\n Returns the FsTable with given FsCellsCollection in the form of an XlsxTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toXlsxTable","title":"FsExtensions.toXlsxTable","content":"FsExtensions.toXlsxTable \ntoXlsxTable \n\n Returns an FsTable with given FsCellsCollection in the form of an XlsxTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromXlsxTable","title":"FsExtensions.fromXlsxTable","content":"FsExtensions.fromXlsxTable \nfromXlsxTable \n\n Takes an XlsxTable and returns an FsTable.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#GetWorksheetOfTable","title":"FsExtensions.GetWorksheetOfTable","content":"FsExtensions.GetWorksheetOfTable \nGetWorksheetOfTable \n\n Returns the FsWorksheet associated with the FsTable in a given FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#getWorksheetOfTable","title":"FsExtensions.getWorksheetOfTable","content":"FsExtensions.getWorksheetOfTable \ngetWorksheetOfTable \n\n Returns the FsWorksheet associated with a given FsTable in an FsWorkbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToXlsxWorksheet","title":"FsExtensions.ToXlsxWorksheet","content":"FsExtensions.ToXlsxWorksheet \nToXlsxWorksheet \n\n Returns the FsWorksheet in the form of an XlsxSpreadsheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toXlsxWorksheet","title":"FsExtensions.toXlsxWorksheet","content":"FsExtensions.toXlsxWorksheet \ntoXlsxWorksheet \n\n Returns an FsWorksheet in the form of an XlsxSpreadsheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#AppendTablesToWorksheetPart","title":"FsExtensions.AppendTablesToWorksheetPart","content":"FsExtensions.AppendTablesToWorksheetPart \nAppendTablesToWorksheetPart \n\n Appends the FsTables of this FsWorksheet to a given OpenXmlWorksheetPart in an XlsxWorkbookPart.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#appendTablesToWorksheetPart","title":"FsExtensions.appendTablesToWorksheetPart","content":"FsExtensions.appendTablesToWorksheetPart \nappendTablesToWorksheetPart \n\n Appends the FsTables of an FsWorksheet to a given OpenXmlWorksheetPart in an XlsxWorkbookPart.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromSpreadsheetDocument","title":"FsExtensions.fromSpreadsheetDocument","content":"FsExtensions.fromSpreadsheetDocument \nfromSpreadsheetDocument \n\n Creates an FsWorkbook from a given SpreadsheetDocument.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromPackage","title":"FsExtensions.fromPackage","content":"FsExtensions.fromPackage \nfromPackage \n\n Creates an FsWorkbook from a given Packaging.Package xlsx package.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromXlsxStream","title":"FsExtensions.fromXlsxStream","content":"FsExtensions.fromXlsxStream \nfromXlsxStream \n\n Creates an FsWorkbook from a given Stream to an XlsxFile.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromXlsxBytes","title":"FsExtensions.fromXlsxBytes","content":"FsExtensions.fromXlsxBytes \nfromXlsxBytes \n\n Creates an FsWorkbook from a given Stream to an XlsxFile.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromXlsxFile","title":"FsExtensions.fromXlsxFile","content":"FsExtensions.fromXlsxFile \nfromXlsxFile \n\n Takes the path to an Xlsx file and returns the FsWorkbook based on its content.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromFile","title":"FsExtensions.fromFile","content":"FsExtensions.fromFile \nfromFile \n\n Takes the path to an Xlsx file and returns the FsWorkbook based on its content.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#tryFromJsonString","title":"FsExtensions.tryFromJsonString","content":"FsExtensions.tryFromJsonString \ntryFromJsonString \n\n Takes a json string and returns the FsWorkbook based on its content.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromJsonString","title":"FsExtensions.fromJsonString","content":"FsExtensions.fromJsonString \nfromJsonString \n\n Takes a json string and returns the FsWorkbook based on its content.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#tryFromJsonFile","title":"FsExtensions.tryFromJsonFile","content":"FsExtensions.tryFromJsonFile \ntryFromJsonFile \n\n Takes the path to an json file and returns the FsWorkbook based on its content.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromJsonFile","title":"FsExtensions.fromJsonFile","content":"FsExtensions.fromJsonFile \nfromJsonFile \n\n Takes the path to an json file and returns the FsWorkbook based on its content.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToEmptySpreadsheet","title":"FsExtensions.ToEmptySpreadsheet","content":"FsExtensions.ToEmptySpreadsheet \nToEmptySpreadsheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToXlsxStream","title":"FsExtensions.ToXlsxStream","content":"FsExtensions.ToXlsxStream \nToXlsxStream \n\n Writes the FsWorkbook into a given MemoryStream.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toXlsxStream","title":"FsExtensions.toXlsxStream","content":"FsExtensions.toXlsxStream \ntoXlsxStream \n\n Writes an FsWorkbook into a given MemoryStream.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToXlsxBytes","title":"FsExtensions.ToXlsxBytes","content":"FsExtensions.ToXlsxBytes \nToXlsxBytes \n\n Returns the FsWorkbook in the form of a byte array.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toXlsxBytes","title":"FsExtensions.toXlsxBytes","content":"FsExtensions.toXlsxBytes \ntoXlsxBytes \n\n Returns an FsWorkbook in the form of a byte array.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToXlsxFile","title":"FsExtensions.ToXlsxFile","content":"FsExtensions.ToXlsxFile \nToXlsxFile \n\n Writes the FsWorkbook into a binary file at the given path.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToFile","title":"FsExtensions.ToFile","content":"FsExtensions.ToFile \nToFile \n\n Writes the FsWorkbook into a binary file at the given path.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toXlsxFile","title":"FsExtensions.toXlsxFile","content":"FsExtensions.toXlsxFile \ntoXlsxFile \n\n Writes an FsWorkbook into a binary file at the given path.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toFile","title":"FsExtensions.toFile","content":"FsExtensions.toFile \ntoFile \n\n Takes the path to an Xlsx file and returns the FsWorkbook based on its content.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toJsonString","title":"FsExtensions.toJsonString","content":"FsExtensions.toJsonString \ntoJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toJsonFile","title":"FsExtensions.toJsonFile","content":"FsExtensions.toJsonFile \ntoJsonFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToJsonString","title":"FsExtensions.ToJsonString","content":"FsExtensions.ToJsonString \nToJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToJsonFile","title":"FsExtensions.ToJsonFile","content":"FsExtensions.ToJsonFile \nToJsonFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-package.html","title":"Package","content":"Package \n \nPackage.tryGetApplication \ntryGetApplication \nPackage.fixLibrePackage \nfixLibrePackage \nPackage.isLibrePackage \nisLibrePackage"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-package.html#tryGetApplication","title":"Package.tryGetApplication","content":"Package.tryGetApplication \ntryGetApplication \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-package.html#fixLibrePackage","title":"Package.fixLibrePackage","content":"Package.fixLibrePackage \nfixLibrePackage \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-package.html#isLibrePackage","title":"Package.isLibrePackage","content":"Package.isLibrePackage \nisLibrePackage \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html","title":"Row","content":"Row \n\n Functions for working with rows (unmanaged: spans and cell references do not get automatically updated).\n \nRow.Spans \nSpans \nRow.empty \nempty \nRow.toCellSeq \ntoCellSeq \nRow.isEmpty \nisEmpty \nRow.iterCells \niterCells \nRow.mapCells \nmapCells \nRow.findCell \nfindCell \nRow.insertCellBefore \ninsertCellBefore \nRow.getIndex \ngetIndex \nRow.setIndex \nsetIndex \nRow.containsCellAt \ncontainsCellAt \nRow.getCellAt \ngetCellAt \nRow.tryGetCellAt \ntryGetCellAt \nRow.tryGetCellAfter \ntryGetCellAfter \nRow.getSpan \ngetSpan \nRow.setSpan \nsetSpan \nRow.extendSpanRight \nextendSpanRight \nRow.extendSpanLeft \nextendSpanLeft \nRow.appendCell \nappendCell \nRow.create \ncreate \nRow.removeCellAt \nremoveCellAt \nRow.tryRemoveCellAt \ntryRemoveCellAt \nRow.tryGetValueAt \ntryGetValueAt \nRow.updateRowSpan \nupdateRowSpan \nRow.updateRowIndex \nupdateRowIndex \nRow.ofValues \nofValues \nRow.moveValueBlockToRight \nmoveValueBlockToRight \nRow.moveValuesToRight \nmoveValuesToRight \nRow.getIndexedValues \ngetIndexedValues \nRow.getRowValues \ngetRowValues \nRow.tryGetRowValues \ntryGetRowValues \nRow.getPresentRowValues \ngetPresentRowValues \nRow.insertValue \ninsertValue \nRow.insertValueAt \ninsertValueAt \nRow.appendValue \nappendValue \nRow.setValue \nsetValue \nRow.includeSharedStringValue \nincludeSharedStringValue"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#empty","title":"Row.empty","content":"Row.empty \nempty \n\n Creates an empty Row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#toCellSeq","title":"Row.toCellSeq","content":"Row.toCellSeq \ntoCellSeq \n\n Returns a sequence of cells contained in the row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#isEmpty","title":"Row.isEmpty","content":"Row.isEmpty \nisEmpty \n\n Returns true if the row contains no cells.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#iterCells","title":"Row.iterCells","content":"Row.iterCells \niterCells \n\n Iterates through all cells of a row with the given function f.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#mapCells","title":"Row.mapCells","content":"Row.mapCells \nmapCells \n\n Applies the function f to all cells of a row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#findCell","title":"Row.findCell","content":"Row.findCell \nfindCell \n\n Returns the first cell in the row for which the predicate returns true.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#insertCellBefore","title":"Row.insertCellBefore","content":"Row.insertCellBefore \ninsertCellBefore \n\n Inserts a cell into the row before a reference cell.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#getIndex","title":"Row.getIndex","content":"Row.getIndex \ngetIndex \n\n Returns the rowIndex of the row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#setIndex","title":"Row.setIndex","content":"Row.setIndex \nsetIndex \n\n Sets the rowIndex of the row\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#containsCellAt","title":"Row.containsCellAt","content":"Row.containsCellAt \ncontainsCellAt \n\n Returns true if the row contains a cell with the given columnIndex.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#getCellAt","title":"Row.getCellAt","content":"Row.getCellAt \ngetCellAt \n\n Returns cell with the given columnIndex.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#tryGetCellAt","title":"Row.tryGetCellAt","content":"Row.tryGetCellAt \ntryGetCellAt \n\n Returns cell with the given columnIndex if it exists, else returns none.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#tryGetCellAfter","title":"Row.tryGetCellAfter","content":"Row.tryGetCellAfter \ntryGetCellAfter \n\n Returns cell matching or exceeding the given column index if it exists, else returns none.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#getSpan","title":"Row.getSpan","content":"Row.getSpan \ngetSpan \n\n Returns the spans of the row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#setSpan","title":"Row.setSpan","content":"Row.setSpan \nsetSpan \n\n Sets the spans of the row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#extendSpanRight","title":"Row.extendSpanRight","content":"Row.extendSpanRight \nextendSpanRight \n\n Extends the right boundary of the spans of the row by the given amount (positive amount increases spans to right and vice versa).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#extendSpanLeft","title":"Row.extendSpanLeft","content":"Row.extendSpanLeft \nextendSpanLeft \n\n Extends the left boundary of the spans of the row by the given amount (positive amount decreases the spans to left and vice versa).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#appendCell","title":"Row.appendCell","content":"Row.appendCell \nappendCell \n\n Append cell to the end of the row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#create","title":"Row.create","content":"Row.create \ncreate \n\n Creates a row from the given rowIndex, columnSpans, and cells.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#removeCellAt","title":"Row.removeCellAt","content":"Row.removeCellAt \nremoveCellAt \n\n Removes the cell at the given columnIndex from the row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#tryRemoveCellAt","title":"Row.tryRemoveCellAt","content":"Row.tryRemoveCellAt \ntryRemoveCellAt \n\n Removes the cell at the given columnIndex from the row if present. Returns none if not.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#tryGetValueAt","title":"Row.tryGetValueAt","content":"Row.tryGetValueAt \ntryGetValueAt \n\n If the row contains a value at the given index, returns it. Returns none if not.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#updateRowSpan","title":"Row.updateRowSpan","content":"Row.updateRowSpan \nupdateRowSpan \n\n Matches the rowSpan to the cell references inside the row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#updateRowIndex","title":"Row.updateRowIndex","content":"Row.updateRowIndex \nupdateRowIndex \n\n Sets the rowIndex of the row and the row indices of the cells in the row to the given 1-based index.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#ofValues","title":"Row.ofValues","content":"Row.ofValues \nofValues \n\n Creates a new row from the given values.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#moveValueBlockToRight","title":"Row.moveValueBlockToRight","content":"Row.moveValueBlockToRight \nmoveValueBlockToRight \n\n If a cell with the given columnIndex exists in the row, moves it one column to the right.\n\n If there already was a cell at the new postion, moves that one too. Repeats until a value is moved into a position previously unoccupied.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#moveValuesToRight","title":"Row.moveValuesToRight","content":"Row.moveValuesToRight \nmoveValuesToRight \n\n Moves all cells starting with the given columnIndex in the row to the right by the given offset.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#getIndexedValues","title":"Row.getIndexedValues","content":"Row.getIndexedValues \ngetIndexedValues \n\n Maps the cells of the given row to tuples of 1-based column indices and the value strings using a sharedStringTable.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#getRowValues","title":"Row.getRowValues","content":"Row.getRowValues \ngetRowValues \n\n Maps the cells of the given row to the value strings.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#tryGetRowValues","title":"Row.tryGetRowValues","content":"Row.tryGetRowValues \ntryGetRowValues \n\n Maps each cell of the given row to each respective value strings if it exists, else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#getPresentRowValues","title":"Row.getPresentRowValues","content":"Row.getPresentRowValues \ngetPresentRowValues \n\n Maps the cells of the given row to the value strings for all existing cells.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#insertValue","title":"Row.insertValue","content":"Row.insertValue \ninsertValue \n\n Adds a value as a cell to the row at the given columnIndex.\n\n If a cell exists at the given columnIndex, shoves it to the right.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#insertValueAt","title":"Row.insertValueAt","content":"Row.insertValueAt \ninsertValueAt \n\n Adds a value as a cell to the row at the given columnindex using a sharedStringTable.\n\n If a cell exists at the given columnindex, shoves it to the right.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#appendValue","title":"Row.appendValue","content":"Row.appendValue \nappendValue \n\n Adds a value as a cell to the end of the row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#setValue","title":"Row.setValue","content":"Row.setValue \nsetValue \n\n Add a value as a cell to the row at the given columnIndex.\n\n If a cell exists at the given columnIndex, overwrites it.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#includeSharedStringValue","title":"Row.includeSharedStringValue","content":"Row.includeSharedStringValue \nincludeSharedStringValue \n\n Includes a value from a sharedStringTable in the cells of the row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html","title":"Spans","content":"Spans \n\n Functions for working with spans. The spans mark the column wise area in which the row lies. \n \nSpans.fromBoundaries \nfromBoundaries \nSpans.toBoundaries \ntoBoundaries \nSpans.rightBoundary \nrightBoundary \nSpans.leftBoundary \nleftBoundary \nSpans.moveHorizontal \nmoveHorizontal \nSpans.extendRight \nextendRight \nSpans.extendLeft \nextendLeft \nSpans.referenceExceedsSpansToRight \nreferenceExceedsSpansToRight \nSpans.referenceExceedsSpansToLeft \nreferenceExceedsSpansToLeft \nSpans.referenceExceedsSpans \nreferenceExceedsSpans"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#fromBoundaries","title":"Spans.fromBoundaries","content":"Spans.fromBoundaries \nfromBoundaries \n\n Given 1 based column start and end indices, returns a \u00221:1\u0022 style spans.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#toBoundaries","title":"Spans.toBoundaries","content":"Spans.toBoundaries \ntoBoundaries \n\n Given a \u00221:1\u0022 style spans, returns 1 based column start and end indices.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#rightBoundary","title":"Spans.rightBoundary","content":"Spans.rightBoundary \nrightBoundary \n\n Gets the right boundary of the spans.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#leftBoundary","title":"Spans.leftBoundary","content":"Spans.leftBoundary \nleftBoundary \n\n Gets the left boundary of the spans.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#moveHorizontal","title":"Spans.moveHorizontal","content":"Spans.moveHorizontal \nmoveHorizontal \n\n Moves both start and end of the spans by the given amount (positive amount moves spans to right and vice versa).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#extendRight","title":"Spans.extendRight","content":"Spans.extendRight \nextendRight \n\n Extends the right boundary of the spans by the given amount (positive amount increases spans to right and vice versa).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#extendLeft","title":"Spans.extendLeft","content":"Spans.extendLeft \nextendLeft \n\n Extends the left boundary of the spans by the given amount (positive amount decreases the spans to left and vice versa).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#referenceExceedsSpansToRight","title":"Spans.referenceExceedsSpansToRight","content":"Spans.referenceExceedsSpansToRight \nreferenceExceedsSpansToRight \n\n Returns true if the column index of the reference exceeds the right boundary of the spans.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#referenceExceedsSpansToLeft","title":"Spans.referenceExceedsSpansToLeft","content":"Spans.referenceExceedsSpansToLeft \nreferenceExceedsSpansToLeft \n\n Returns true if the column index of the reference exceeds the left boundary of the spans.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#referenceExceedsSpans","title":"Spans.referenceExceedsSpans","content":"Spans.referenceExceedsSpans \nreferenceExceedsSpans \n\n Returns true if the column index of the reference does not lie in the boundary of the spans.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html","title":"SharedStringTable","content":"SharedStringTable \n\n Functions for working with SharedStringTables.\n \nSharedStringTable.SharedStringItem \nSharedStringItem \nSharedStringTable.empty \nempty \nSharedStringTable.init \ninit \nSharedStringTable.get \nget \nSharedStringTable.set \nset \nSharedStringTable.toSeq \ntoSeq \nSharedStringTable.getIndexByString \ngetIndexByString \nSharedStringTable.tryGetIndexByString \ntryGetIndexByString \nSharedStringTable.getText \ngetText \nSharedStringTable.count \ncount \nSharedStringTable.append \nappend \nSharedStringTable.insertText \ninsertText \nSharedStringTable.tryGet \ntryGet \nSharedStringTable.toSST \ntoSST"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#empty","title":"SharedStringTable.empty","content":"SharedStringTable.empty \nempty \n\n Creates an empty sharedStringTable.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#init","title":"SharedStringTable.init","content":"SharedStringTable.init \ninit \n\n Sets an empty sharedStringTable.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#get","title":"SharedStringTable.get","content":"SharedStringTable.get \nget \n\n Gets the sharedStringTable of the sharedStringTablePart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#set","title":"SharedStringTable.set","content":"SharedStringTable.set \nset \n\n Sets the sharedStringtable of the sharedStringTablePart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#toSeq","title":"SharedStringTable.toSeq","content":"SharedStringTable.toSeq \ntoSeq \n\n Returns the sharedStringItems contained in the sharedStringTable.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#getIndexByString","title":"SharedStringTable.getIndexByString","content":"SharedStringTable.getIndexByString \ngetIndexByString \n\n Returns the index of the string, or the invers of the element count.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#tryGetIndexByString","title":"SharedStringTable.tryGetIndexByString","content":"SharedStringTable.tryGetIndexByString \ntryGetIndexByString \n\n If the string is contained in the sharedStringTable, contains the index of its position.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#getText","title":"SharedStringTable.getText","content":"SharedStringTable.getText \ngetText \n\n Returns the sharedStringItem at the given index.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#count","title":"SharedStringTable.count","content":"SharedStringTable.count \ncount \n\n Number of sharedStringItems in the sharedStringTable.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#append","title":"SharedStringTable.append","content":"SharedStringTable.append \nappend \n\n Appends the SharedStringItem to the end of the SharedStringTable.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#insertText","title":"SharedStringTable.insertText","content":"SharedStringTable.insertText \ninsertText \n\n Inserts text into the sharedStringTable. If the item already exists, returns its index.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#tryGet","title":"SharedStringTable.tryGet","content":"SharedStringTable.tryGet \ntryGet \n\n Gets the sharedStringTable of the spreadsheet if it exists, else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#toSST","title":"SharedStringTable.toSST","content":"SharedStringTable.toSST \ntoSST \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable-sharedstringitem.html","title":"SharedStringItem","content":"SharedStringItem \n\n Functions for working with SharedStringItems.\n \nSharedStringItem.getText \ngetText \nSharedStringItem.setText \nsetText \nSharedStringItem.create \ncreate \nSharedStringItem.add \nadd"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable-sharedstringitem.html#getText","title":"SharedStringItem.getText","content":"SharedStringItem.getText \ngetText \n\n Gets the string contained in the sharedStringItem.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable-sharedstringitem.html#setText","title":"SharedStringItem.setText","content":"SharedStringItem.setText \nsetText \n\n Sets the string contained in the sharedStringItem.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable-sharedstringitem.html#create","title":"SharedStringItem.create","content":"SharedStringItem.create \ncreate \n\n Creates a sharedStringItem containing the given string.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable-sharedstringitem.html#add","title":"SharedStringItem.add","content":"SharedStringItem.add \nadd \n\n Adds the sharedStringItem to the sharedStringTable.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html","title":"Sheet","content":"Sheet \n\n Part of the Workbook, stores name and other additional info of the sheet. (Unmanaged: Changing a sheet does not alter the associated worksheet which stores the data)\n \nSheet.Sheets \nSheets \nSheet.empty \nempty \nSheet.setName \nsetName \nSheet.getName \ngetName \nSheet.setID \nsetID \nSheet.getID \ngetID \nSheet.setSheetIndex \nsetSheetIndex \nSheet.getSheetIndex \ngetSheetIndex \nSheet.create \ncreate \nSheet.tryItem \ntryItem \nSheet.tryGetById \ntryGetById \nSheet.tryItemByName \ntryItemByName \nSheet.add \nadd \nSheet.remove \nremove \nSheet.tryFind \ntryFind \nSheet.countSheets \ncountSheets"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#empty","title":"Sheet.empty","content":"Sheet.empty \nempty \n\n Creates an empty Sheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#setName","title":"Sheet.setName","content":"Sheet.setName \nsetName \n\n Sets the name of the sheet (this is the name displayed in MS Excel).\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#getName","title":"Sheet.getName","content":"Sheet.getName \ngetName \n\n Gets the name of the sheet (this is the name displayed in MS Excel).\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#setID","title":"Sheet.setID","content":"Sheet.setID \nsetID \n\n Sets the ID of the sheet (this ID associates the sheet with the worksheet).\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#getID","title":"Sheet.getID","content":"Sheet.getID \ngetID \n\n Gets the ID of the sheet (this ID associates the sheet with the worksheet).\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#setSheetIndex","title":"Sheet.setSheetIndex","content":"Sheet.setSheetIndex \nsetSheetIndex \n\n Sets the SheetID of the sheet (this ID determines the position of the sheet tab in MS Excel).\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#getSheetIndex","title":"Sheet.getSheetIndex","content":"Sheet.getSheetIndex \ngetSheetIndex \n\n Gets the SheetID of the sheet (this ID determines the position of the sheet tab in MS Excel).\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#create","title":"Sheet.create","content":"Sheet.create \ncreate \n\n Create a sheet from the id, the name and the sheetID.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#tryItem","title":"Sheet.tryItem","content":"Sheet.tryItem \ntryItem \n\n Returns the item at the given index in the SpreadsheetDocument if it exists. Else returns None.\n \nSheetIndices are 1-based."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#tryGetById","title":"Sheet.tryGetById","content":"Sheet.tryGetById \ntryGetById \n\n Returns the with the given ID in the SpreadsheetDocument if it exists. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#tryItemByName","title":"Sheet.tryItemByName","content":"Sheet.tryItemByName \ntryItemByName \n\n Returns the item with the given name in the spreadsheetDocument if it exists. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#add","title":"Sheet.add","content":"Sheet.add \nadd \n\n Adds the given sheet to the spreadsheetDocument.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#remove","title":"Sheet.remove","content":"Sheet.remove \nremove \n\n Removes the given sheet from the sheets.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#tryFind","title":"Sheet.tryFind","content":"Sheet.tryFind \ntryFind \n\n Returns the sheet for which the predicate returns true (Id Name SheetID -\u003E bool)\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#countSheets","title":"Sheet.countSheets","content":"Sheet.countSheets \ncountSheets \n\n Counts the number of sheets in the spreadsheetDocument.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html","title":"Sheets","content":"Sheets \n\n Functions for working with Sheets.\n \nSheets.empty \nempty \nSheets.getFirstSheet \ngetFirstSheet \nSheets.getSheets \ngetSheets \nSheets.addSheet \naddSheet \nSheets.addSheets \naddSheets \nSheets.get \nget \nSheets.init \ninit \nSheets.getOrInit \ngetOrInit \nSheets.tryGetSheetByName \ntryGetSheetByName"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#empty","title":"Sheets.empty","content":"Sheets.empty \nempty \n\n Creates empty sheets.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#getFirstSheet","title":"Sheets.getFirstSheet","content":"Sheets.getFirstSheet \ngetFirstSheet \n\n Returns the first child sheet of the sheets.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#getSheets","title":"Sheets.getSheets","content":"Sheets.getSheets \ngetSheets \n\n Returns all sheets of the sheets.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#addSheet","title":"Sheets.addSheet","content":"Sheets.addSheet \naddSheet \n\n Adds a single Sheet to the Sheets.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#addSheets","title":"Sheets.addSheets","content":"Sheets.addSheets \naddSheets \n\n Adds a Sheet collection to the Sheets.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#get","title":"Sheets.get","content":"Sheets.get \nget \n\n Gets the sheets of the workbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#init","title":"Sheets.init","content":"Sheets.init \ninit \n\n Add an empty sheets element to the workbook.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#getOrInit","title":"Sheets.getOrInit","content":"Sheets.getOrInit \ngetOrInit \n\n Returns the existing or a newly created sheets associated with the worksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#tryGetSheetByName","title":"Sheets.tryGetSheetByName","content":"Sheets.tryGetSheetByName \ntryGetSheetByName \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html","title":"SheetData","content":"SheetData \n\n Functions for working with SheetData. (Unmanaged: Row indices and cell references do not automatically get updated)\n \nSheetData.empty \nempty \nSheetData.insertBefore \ninsertBefore \nSheetData.appendRow \nappendRow \nSheetData.getRows \ngetRows \nSheetData.mapRows \nmapRows \nSheetData.countRows \ncountRows \nSheetData.tryGetRowAfter \ntryGetRowAfter \nSheetData.tryGetRowAt \ntryGetRowAt \nSheetData.getRowAt \ngetRowAt \nSheetData.containsRowAt \ncontainsRowAt \nSheetData.removeRowAt \nremoveRowAt \nSheetData.tryRemoveRowAt \ntryRemoveRowAt \nSheetData.moveRowVertical \nmoveRowVertical \nSheetData.moveRowBlockDownward \nmoveRowBlockDownward \nSheetData.getMaxRowIndex \ngetMaxRowIndex \nSheetData.tryGetRowValuesAt \ntryGetRowValuesAt \nSheetData.getRowValuesAt \ngetRowValuesAt \nSheetData.tryGetIndexedRowValuesAt \ntryGetIndexedRowValuesAt \nSheetData.insertRowWithHorizontalOffsetAt \ninsertRowWithHorizontalOffsetAt \nSheetData.insertRowValuesAt \ninsertRowValuesAt \nSheetData.appendRowValues \nappendRowValues \nSheetData.appendValueToRowAt \nappendValueToRowAt \nSheetData.deleteRowAt \ndeleteRowAt \nSheetData.tryGetCellAt \ntryGetCellAt \nSheetData.getCellAt \ngetCellAt \nSheetData.getCellValueAt \ngetCellValueAt \nSheetData.tryGetCellValueAt \ntryGetCellValueAt \nSheetData.insertValueAt \ninsertValueAt \nSheetData.setValueAt \nsetValueAt \nSheetData.tryRemoveValueAt \ntryRemoveValueAt \nSheetData.removeValueAt \nremoveValueAt \nSheetData.includeSharedStringValue \nincludeSharedStringValue \nSheetData.toSparseValueMatrix \ntoSparseValueMatrix"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#empty","title":"SheetData.empty","content":"SheetData.empty \nempty \n\n Creates an empty SheetData.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#insertBefore","title":"SheetData.insertBefore","content":"SheetData.insertBefore \ninsertBefore \n\n Inserts a row into the SheetData before a reference row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#appendRow","title":"SheetData.appendRow","content":"SheetData.appendRow \nappendRow \n\n Append a row to the end of the SheetData.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#getRows","title":"SheetData.getRows","content":"SheetData.getRows \ngetRows \n\n Returns a sequence of rows contained in the SheetData.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#mapRows","title":"SheetData.mapRows","content":"SheetData.mapRows \nmapRows \n\n Applies the given function f onto every row in the SheetData.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#countRows","title":"SheetData.countRows","content":"SheetData.countRows \ncountRows \n\n Returns the number of rows contained in the SheetData.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#tryGetRowAfter","title":"SheetData.tryGetRowAfter","content":"SheetData.tryGetRowAfter \ntryGetRowAfter \n\n Returns row matching or exceeding the given row index if it exists, else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#tryGetRowAt","title":"SheetData.tryGetRowAt","content":"SheetData.tryGetRowAt \ntryGetRowAt \n\n Returns the row with the given rowIndex if it exists, else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#getRowAt","title":"SheetData.getRowAt","content":"SheetData.getRowAt \ngetRowAt \n\n Returns the row with the given rowIndex.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#containsRowAt","title":"SheetData.containsRowAt","content":"SheetData.containsRowAt \ncontainsRowAt \n\n Returns true if the SheetData contains a row with the given rowIndex.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#removeRowAt","title":"SheetData.removeRowAt","content":"SheetData.removeRowAt \nremoveRowAt \n\n Removes the row at the given rowIndex.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#tryRemoveRowAt","title":"SheetData.tryRemoveRowAt","content":"SheetData.tryRemoveRowAt \ntryRemoveRowAt \n\n Removes the row at the given rowIndex if it exists, else it returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#moveRowVertical","title":"SheetData.moveRowVertical","content":"SheetData.moveRowVertical \nmoveRowVertical \n\n If the row with index rowIndex exists in the sheet, moves it downwards by amount. Negative amounts will move the row upwards.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#moveRowBlockDownward","title":"SheetData.moveRowBlockDownward","content":"SheetData.moveRowBlockDownward \nmoveRowBlockDownward \n\nIf a row with the given rowIndex exists in the sheet, moves it one position downwards. \n\n If there already was a row at the new postion, moves that one too. Repeats until a row is moved into a position previously unoccupied.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#getMaxRowIndex","title":"SheetData.getMaxRowIndex","content":"SheetData.getMaxRowIndex \ngetMaxRowIndex \n\n Returns the index of the last row in the sheet.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#tryGetRowValuesAt","title":"SheetData.tryGetRowValuesAt","content":"SheetData.tryGetRowValuesAt \ntryGetRowValuesAt \n\n Gets the string value of the cell at the given 1-based column and rowIndex, if it exists, else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#getRowValuesAt","title":"SheetData.getRowValuesAt","content":"SheetData.getRowValuesAt \ngetRowValuesAt \n\n Gets the string values of the row at the given 1-based rowIndex.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#tryGetIndexedRowValuesAt","title":"SheetData.tryGetIndexedRowValuesAt","content":"SheetData.tryGetIndexedRowValuesAt \ntryGetIndexedRowValuesAt \n\n Maps the cells of the given row to tuples of 1-based column indices and the value strings using a sharedStringTable, if it exists, else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#insertRowWithHorizontalOffsetAt","title":"SheetData.insertRowWithHorizontalOffsetAt","content":"SheetData.insertRowWithHorizontalOffsetAt \ninsertRowWithHorizontalOffsetAt \n\n Adds values as a row to the sheet at the given rowIndex with the given horizontal offset.\n\n If a row exists at the given rowIndex, shoves it downwards.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#insertRowValuesAt","title":"SheetData.insertRowValuesAt","content":"SheetData.insertRowValuesAt \ninsertRowValuesAt \n\n Adds values as a row to the sheet at the given rowIndex.\n\n If a row exists at the given rowIndex, shoves it downwards.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#appendRowValues","title":"SheetData.appendRowValues","content":"SheetData.appendRowValues \nappendRowValues \n\n Append the values as a row to the end of the sheet.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#appendValueToRowAt","title":"SheetData.appendValueToRowAt","content":"SheetData.appendValueToRowAt \nappendValueToRowAt \n\n Append the value as a cell to the end of the row.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#deleteRowAt","title":"SheetData.deleteRowAt","content":"SheetData.deleteRowAt \ndeleteRowAt \n\n Removes row from sheet and move the following rows up.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#tryGetCellAt","title":"SheetData.tryGetCellAt","content":"SheetData.tryGetCellAt \ntryGetCellAt \n\n Return a cell at the given row- and columnIndex in the SheetData if it exists. Else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#getCellAt","title":"SheetData.getCellAt","content":"SheetData.getCellAt \ngetCellAt \n\n Returns a cell at the given row- and columnIndex in the SheetData.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#getCellValueAt","title":"SheetData.getCellValueAt","content":"SheetData.getCellValueAt \ngetCellValueAt \n\n Gets the string value of the cell at the given 1-based column- and rowIndex using a sharedStringTable.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#tryGetCellValueAt","title":"SheetData.tryGetCellValueAt","content":"SheetData.tryGetCellValueAt \ntryGetCellValueAt \n\n Gets the string value of the cell at the given 1-based column- and rowIndex using a sharedStringTable if it exists. Else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#insertValueAt","title":"SheetData.insertValueAt","content":"SheetData.insertValueAt \ninsertValueAt \n\n Add a value at the given row- and columnindex to sheet using a shared string table.\n\n If a cell exists at the given position, it is shoved to the right.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#setValueAt","title":"SheetData.setValueAt","content":"SheetData.setValueAt \nsetValueAt \n\n Adds a value at the given row- and columnIndex using a sharedStringTable.\n\n If a cell exists at the given position, overwrites it.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#tryRemoveValueAt","title":"SheetData.tryRemoveValueAt","content":"SheetData.tryRemoveValueAt \ntryRemoveValueAt \n\n Removes the value at the given row- and columnIndex from the sheet if it exists. Else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#removeValueAt","title":"SheetData.removeValueAt","content":"SheetData.removeValueAt \nremoveValueAt \n\n Removes the value at the given row- and columnIndex from the sheet.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#includeSharedStringValue","title":"SheetData.includeSharedStringValue","content":"SheetData.includeSharedStringValue \nincludeSharedStringValue \n\n Includes a value from sharedStringTable in the cells of the rows of the sheetData\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#toSparseValueMatrix","title":"SheetData.toSparseValueMatrix","content":"SheetData.toSparseValueMatrix \ntoSparseValueMatrix \n\n Reads the values of all cells from a sheetData and a sharedStringTable and converts them into a sparse matrix. Values are stored sparsely in a dictionary, with the key being a row index and column index tuple.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html","title":"Spreadsheet","content":"Spreadsheet \n\n Functions for working the spreadsheet document.\n \nSpreadsheet.fromFile \nfromFile \nSpreadsheet.fromStream \nfromStream \nSpreadsheet.initEmpty \ninitEmpty \nSpreadsheet.initEmptyOnStream \ninitEmptyOnStream \nSpreadsheet.getWorkbookPart \ngetWorkbookPart \nSpreadsheet.initWorkbookPart \ninitWorkbookPart \nSpreadsheet.saveChanges \nsaveChanges \nSpreadsheet.close \nclose \nSpreadsheet.saveAs \nsaveAs \nSpreadsheet.init \ninit \nSpreadsheet.initOnStream \ninitOnStream \nSpreadsheet.initWithSst \ninitWithSst \nSpreadsheet.initWithSstOnStream \ninitWithSstOnStream \nSpreadsheet.getSharedStringTable \ngetSharedStringTable \nSpreadsheet.tryGetSharedStringTable \ntryGetSharedStringTable \nSpreadsheet.getOrInitSharedStringTablePart \ngetOrInitSharedStringTablePart \nSpreadsheet.tryGetWorksheetPartBySheetName \ntryGetWorksheetPartBySheetName \nSpreadsheet.tryGetWorksheetPartBySheetIndex \ntryGetWorksheetPartBySheetIndex \nSpreadsheet.tryGetSheetBySheetName \ntryGetSheetBySheetName \nSpreadsheet.tryGetSheetBySheetIndex \ntryGetSheetBySheetIndex \nSpreadsheet.getRowsBySheetIndex \ngetRowsBySheetIndex \nSpreadsheet.getCellsBySheet \ngetCellsBySheet \nSpreadsheet.getCellsBySheetIndex \ngetCellsBySheetIndex \nSpreadsheet.getCellsBySheetID \ngetCellsBySheetID \nSpreadsheet.mapRowOfSheet \nmapRowOfSheet \nSpreadsheet.mapRowsOfSheet \nmapRowsOfSheet \nSpreadsheet.appendRowValuesToSheet \nappendRowValuesToSheet \nSpreadsheet.insertRowValuesIntoSheetAt \ninsertRowValuesIntoSheetAt \nSpreadsheet.insertValueIntoSheetAt \ninsertValueIntoSheetAt \nSpreadsheet.setValueInSheetAt \nsetValueInSheetAt \nSpreadsheet.deleteRowFromSheet \ndeleteRowFromSheet"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#fromFile","title":"Spreadsheet.fromFile","content":"Spreadsheet.fromFile \nfromFile \n\n Opens the spreadsheet located at the given path and initialized a FileStream.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#fromStream","title":"Spreadsheet.fromStream","content":"Spreadsheet.fromStream \nfromStream \n\n Opens the spreadsheet from the given FileStream.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#initEmpty","title":"Spreadsheet.initEmpty","content":"Spreadsheet.initEmpty \ninitEmpty \n\n Initializes a new empty spreadsheet at the given path.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#initEmptyOnStream","title":"Spreadsheet.initEmptyOnStream","content":"Spreadsheet.initEmptyOnStream \ninitEmptyOnStream \n\n Initializes a new empty spreadsheet in the given stream.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#getWorkbookPart","title":"Spreadsheet.getWorkbookPart","content":"Spreadsheet.getWorkbookPart \ngetWorkbookPart \n\n Gets the workbookPart of the spreadsheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#initWorkbookPart","title":"Spreadsheet.initWorkbookPart","content":"Spreadsheet.initWorkbookPart \ninitWorkbookPart \n\n Initialized a new workbookPart in the spreadsheetDocument but only if there is none.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#saveChanges","title":"Spreadsheet.saveChanges","content":"Spreadsheet.saveChanges \nsaveChanges \n\n Saves changes made to the spreadsheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#close","title":"Spreadsheet.close","content":"Spreadsheet.close \nclose \n\n Closes the FileStream to the spreadsheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#saveAs","title":"Spreadsheet.saveAs","content":"Spreadsheet.saveAs \nsaveAs \n\n Saves changes made to the spreadsheet to the given path.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#init","title":"Spreadsheet.init","content":"Spreadsheet.init \ninit \n\n Initializes a new spreadsheet with an empty sheet at the given path.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#initOnStream","title":"Spreadsheet.initOnStream","content":"Spreadsheet.initOnStream \ninitOnStream \n\n Initializes a new spreadsheet with an empty sheet in the given stream.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#initWithSst","title":"Spreadsheet.initWithSst","content":"Spreadsheet.initWithSst \ninitWithSst \n\n Initializes a new spreadsheet with an empty sheet and a sharedStringTable at the given path.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#initWithSstOnStream","title":"Spreadsheet.initWithSstOnStream","content":"Spreadsheet.initWithSstOnStream \ninitWithSstOnStream \n\n Initializes a new spreadsheet with an empty sheet and a sharedStringTable in the given stream.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#getSharedStringTable","title":"Spreadsheet.getSharedStringTable","content":"Spreadsheet.getSharedStringTable \ngetSharedStringTable \n\n Gets the sharedStringTable of a spreadsheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#tryGetSharedStringTable","title":"Spreadsheet.tryGetSharedStringTable","content":"Spreadsheet.tryGetSharedStringTable \ntryGetSharedStringTable \n\n Gets the sharedStringTable of the spreadsheet if it exists, else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#getOrInitSharedStringTablePart","title":"Spreadsheet.getOrInitSharedStringTablePart","content":"Spreadsheet.getOrInitSharedStringTablePart \ngetOrInitSharedStringTablePart \n\n Gets the sharedStringTablePart. If it does not exist, creates a new one.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#tryGetWorksheetPartBySheetName","title":"Spreadsheet.tryGetWorksheetPartBySheetName","content":"Spreadsheet.tryGetWorksheetPartBySheetName \ntryGetWorksheetPartBySheetName \n\n Returns the worksheetPart associated to the sheet with the given name.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#tryGetWorksheetPartBySheetIndex","title":"Spreadsheet.tryGetWorksheetPartBySheetIndex","content":"Spreadsheet.tryGetWorksheetPartBySheetIndex \ntryGetWorksheetPartBySheetIndex \n\n Returns the worksheetPart for the given 0-based sheetIndex of the given spreadsheetDocument. \n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#tryGetSheetBySheetName","title":"Spreadsheet.tryGetSheetBySheetName","content":"Spreadsheet.tryGetSheetBySheetName \ntryGetSheetBySheetName \n\n Returns the sheetData for the given 0-based sheetIndex of the given spreadsheetDocument if it exists. Else returns None.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#tryGetSheetBySheetIndex","title":"Spreadsheet.tryGetSheetBySheetIndex","content":"Spreadsheet.tryGetSheetBySheetIndex \ntryGetSheetBySheetIndex \n\n Returns the sheetData for the given 0-based sheetIndex of the given spreadsheetDocument. \n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#getRowsBySheetIndex","title":"Spreadsheet.getRowsBySheetIndex","content":"Spreadsheet.getRowsBySheetIndex \ngetRowsBySheetIndex \n\n Returns a sequence of rows containing the cells for the given 0-based sheetIndex of the given spreadsheetDocument. \n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#getCellsBySheet","title":"Spreadsheet.getCellsBySheet","content":"Spreadsheet.getCellsBySheet \ngetCellsBySheet \n\n Returns a 1D-sequence of Cells for the given Sheet of the given SpreadsheetDocument.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#getCellsBySheetIndex","title":"Spreadsheet.getCellsBySheetIndex","content":"Spreadsheet.getCellsBySheetIndex \ngetCellsBySheetIndex \n\n Returns a 1D-sequence of Cells for the given sheetIndex of the given SpreadsheetDocument.\n \nSheetIndices are 1-based."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#getCellsBySheetID","title":"Spreadsheet.getCellsBySheetID","content":"Spreadsheet.getCellsBySheetID \ngetCellsBySheetID \n\n Returns a 1D-sequence of Cells for the given sheetIndex of the given SpreadsheetDocument.\n \nSheetIndices are 1-based."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#mapRowOfSheet","title":"Spreadsheet.mapRowOfSheet","content":"Spreadsheet.mapRowOfSheet \nmapRowOfSheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#mapRowsOfSheet","title":"Spreadsheet.mapRowsOfSheet","content":"Spreadsheet.mapRowsOfSheet \nmapRowsOfSheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#appendRowValuesToSheet","title":"Spreadsheet.appendRowValuesToSheet","content":"Spreadsheet.appendRowValuesToSheet \nappendRowValuesToSheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#insertRowValuesIntoSheetAt","title":"Spreadsheet.insertRowValuesIntoSheetAt","content":"Spreadsheet.insertRowValuesIntoSheetAt \ninsertRowValuesIntoSheetAt \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#insertValueIntoSheetAt","title":"Spreadsheet.insertValueIntoSheetAt","content":"Spreadsheet.insertValueIntoSheetAt \ninsertValueIntoSheetAt \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#setValueInSheetAt","title":"Spreadsheet.setValueInSheetAt","content":"Spreadsheet.setValueInSheetAt \nsetValueInSheetAt \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#deleteRowFromSheet","title":"Spreadsheet.deleteRowFromSheet","content":"Spreadsheet.deleteRowFromSheet \ndeleteRowFromSheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet.html","title":"Stylesheet","content":"Stylesheet \n \nStylesheet.Border \nBorder \nStylesheet.CellFormat \nCellFormat \nStylesheet.Fill \nFill \nStylesheet.Font \nFont \nStylesheet.NumberingFormat \nNumberingFormat \nStylesheet.get \nget \nStylesheet.getOrInit \ngetOrInit \nStylesheet.tryGet \ntryGet"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet.html#get","title":"Stylesheet.get","content":"Stylesheet.get \nget \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet.html#getOrInit","title":"Stylesheet.getOrInit","content":"Stylesheet.getOrInit \ngetOrInit \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet.html#tryGet","title":"Stylesheet.tryGet","content":"Stylesheet.tryGet \ntryGet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-border.html","title":"Border","content":"Border \n \nBorder.getDefault \ngetDefault \nBorder.updateCount \nupdateCount \nBorder.initDefaultBorders \ninitDefaultBorders"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-border.html#getDefault","title":"Border.getDefault","content":"Border.getDefault \ngetDefault \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-border.html#updateCount","title":"Border.updateCount","content":"Border.updateCount \nupdateCount \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-border.html#initDefaultBorders","title":"Border.initDefaultBorders","content":"Border.initDefaultBorders \ninitDefaultBorders \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html","title":"CellFormat","content":"CellFormat \n \nCellFormat.isDateTime \nisDateTime \nCellFormat.structurallyEquals \nstructurallyEquals \nCellFormat.updateCount \nupdateCount \nCellFormat.count \ncount \nCellFormat.tryGetIndex \ntryGetIndex \nCellFormat.getAt \ngetAt \nCellFormat.tryGetAt \ntryGetAt \nCellFormat.setAt \nsetAt \nCellFormat.append \nappend \nCellFormat.appendOrGetIndex \nappendOrGetIndex \nCellFormat.getDefault \ngetDefault \nCellFormat.getDefaultDate \ngetDefaultDate \nCellFormat.getDefaultDateTime \ngetDefaultDateTime \nCellFormat.initDefaultCellFormats \ninitDefaultCellFormats"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#isDateTime","title":"CellFormat.isDateTime","content":"CellFormat.isDateTime \nisDateTime \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#structurallyEquals","title":"CellFormat.structurallyEquals","content":"CellFormat.structurallyEquals \nstructurallyEquals \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#updateCount","title":"CellFormat.updateCount","content":"CellFormat.updateCount \nupdateCount \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#count","title":"CellFormat.count","content":"CellFormat.count \ncount \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#tryGetIndex","title":"CellFormat.tryGetIndex","content":"CellFormat.tryGetIndex \ntryGetIndex \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#getAt","title":"CellFormat.getAt","content":"CellFormat.getAt \ngetAt \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#tryGetAt","title":"CellFormat.tryGetAt","content":"CellFormat.tryGetAt \ntryGetAt \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#setAt","title":"CellFormat.setAt","content":"CellFormat.setAt \nsetAt \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#append","title":"CellFormat.append","content":"CellFormat.append \nappend \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#appendOrGetIndex","title":"CellFormat.appendOrGetIndex","content":"CellFormat.appendOrGetIndex \nappendOrGetIndex \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#getDefault","title":"CellFormat.getDefault","content":"CellFormat.getDefault \ngetDefault \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#getDefaultDate","title":"CellFormat.getDefaultDate","content":"CellFormat.getDefaultDate \ngetDefaultDate \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#getDefaultDateTime","title":"CellFormat.getDefaultDateTime","content":"CellFormat.getDefaultDateTime \ngetDefaultDateTime \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#initDefaultCellFormats","title":"CellFormat.initDefaultCellFormats","content":"CellFormat.initDefaultCellFormats \ninitDefaultCellFormats \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-fill.html","title":"Fill","content":"Fill \n \nFill.getDefault \ngetDefault \nFill.updateCount \nupdateCount \nFill.initDefaultFills \ninitDefaultFills"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-fill.html#getDefault","title":"Fill.getDefault","content":"Fill.getDefault \ngetDefault \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-fill.html#updateCount","title":"Fill.updateCount","content":"Fill.updateCount \nupdateCount \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-fill.html#initDefaultFills","title":"Fill.initDefaultFills","content":"Fill.initDefaultFills \ninitDefaultFills \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-font.html","title":"Font","content":"Font \n \nFont.getDefault \ngetDefault \nFont.updateCount \nupdateCount \nFont.initDefaultFonts \ninitDefaultFonts"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-font.html#getDefault","title":"Font.getDefault","content":"Font.getDefault \ngetDefault \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-font.html#updateCount","title":"Font.updateCount","content":"Font.updateCount \nupdateCount \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-font.html#initDefaultFonts","title":"Font.initDefaultFonts","content":"Font.initDefaultFonts \ninitDefaultFonts \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-numberingformat.html","title":"NumberingFormat","content":"NumberingFormat \n \nNumberingFormat.get \nget \nNumberingFormat.tryGet \ntryGet \nNumberingFormat.getFormatCode \ngetFormatCode \nNumberingFormat.isDateTime \nisDateTime"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-numberingformat.html#get","title":"NumberingFormat.get","content":"NumberingFormat.get \nget \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-numberingformat.html#tryGet","title":"NumberingFormat.tryGet","content":"NumberingFormat.tryGet \ntryGet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-numberingformat.html#getFormatCode","title":"NumberingFormat.getFormatCode","content":"NumberingFormat.getFormatCode \ngetFormatCode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-numberingformat.html#isDateTime","title":"NumberingFormat.isDateTime","content":"NumberingFormat.isDateTime \nisDateTime \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html","title":"Table","content":"Table \n\n Functions for working with tables. \n\n The table object itself just stores the name, the headers and the area in which the table lies.\n The values are stored in the sheetData object associated with the same worksheet as the table.\n\n Therefore, in order to work with tables, one should retrieve both the sheetData and the table. The value retrieval functions ask for both.\n \nTable.Area \nArea \nTable.TableColumn \nTableColumn \nTable.TableColumns \nTableColumns \nTable.getByNameBy \ngetByNameBy \nTable.tryGetByNameBy \ntryGetByNameBy \nTable.tryGetFirst \ntryGetFirst \nTable.list \nlist \nTable.getName \ngetName \nTable.setName \nsetName \nTable.getDisplayName \ngetDisplayName \nTable.setDisplayName \nsetDisplayName \nTable.getArea \ngetArea \nTable.setArea \nsetArea \nTable.create \ncreate \nTable.addTable \naddTable \nTable.tryCreateWithExistingHeaders \ntryCreateWithExistingHeaders \nTable.getColumnHeaders \ngetColumnHeaders \nTable.tryGetTableColumnBy \ntryGetTableColumnBy \nTable.tryGetTableColumnByName \ntryGetTableColumnByName \nTable.tryGetColumnValuesByColumnHeader \ntryGetColumnValuesByColumnHeader \nTable.tryGetIndexedColumnValuesByColumnHeader \ntryGetIndexedColumnValuesByColumnHeader \nTable.tryGetKeyValuesByColumnHeaders \ntryGetKeyValuesByColumnHeaders \nTable.toSparseValueMatrix \ntoSparseValueMatrix"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#getByNameBy","title":"Table.getByNameBy","content":"Table.getByNameBy \ngetByNameBy \n\n Returns a table for which the predicate applied to its name returns true.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#tryGetByNameBy","title":"Table.tryGetByNameBy","content":"Table.tryGetByNameBy \ntryGetByNameBy \n\n If a table exists, for which the predicate applied to its name returns true, gets it. Else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#tryGetFirst","title":"Table.tryGetFirst","content":"Table.tryGetFirst \ntryGetFirst \n\n If the worksheetPart contains tables, returns the first one. Else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#list","title":"Table.list","content":"Table.list \nlist \n\n List all tables contained in the worksheet.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#getName","title":"Table.getName","content":"Table.getName \ngetName \n\n Gets the name of a table.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#setName","title":"Table.setName","content":"Table.setName \nsetName \n\n Sets the name of a table.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#getDisplayName","title":"Table.getDisplayName","content":"Table.getDisplayName \ngetDisplayName \n\n Gets the diplayName of a table.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#setDisplayName","title":"Table.setDisplayName","content":"Table.setDisplayName \nsetDisplayName \n\n Sets the displayName of the table.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#getArea","title":"Table.getArea","content":"Table.getArea \ngetArea \n\n Gets the area of the table.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#setArea","title":"Table.setArea","content":"Table.setArea \nsetArea \n\n Sets the area of the table.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#create","title":"Table.create","content":"Table.create \ncreate \n\n Creates a table from a name a area and tableColumns.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#addTable","title":"Table.addTable","content":"Table.addTable \naddTable \n\n Adds a table to the worksheetPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#tryCreateWithExistingHeaders","title":"Table.tryCreateWithExistingHeaders","content":"Table.tryCreateWithExistingHeaders \ntryCreateWithExistingHeaders \n\n Create a table object by an area. If the first row of this area contains values in the given sheet, these are chosen as headers for the table and a table is returned.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#getColumnHeaders","title":"Table.getColumnHeaders","content":"Table.getColumnHeaders \ngetColumnHeaders \n\n Returns the headers of the columns.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#tryGetTableColumnBy","title":"Table.tryGetTableColumnBy","content":"Table.tryGetTableColumnBy \ntryGetTableColumnBy \n\n Returns the tableColumn for which the predicate returns true if it exists. Else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#tryGetTableColumnByName","title":"Table.tryGetTableColumnByName","content":"Table.tryGetTableColumnByName \ntryGetTableColumnByName \n\n If a tableColumn with the given name exists in the table, returns it. Else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#tryGetColumnValuesByColumnHeader","title":"Table.tryGetColumnValuesByColumnHeader","content":"Table.tryGetColumnValuesByColumnHeader \ntryGetColumnValuesByColumnHeader \n\n If a column with the given header exists in the table, returns its values. Else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#tryGetIndexedColumnValuesByColumnHeader","title":"Table.tryGetIndexedColumnValuesByColumnHeader","content":"Table.tryGetIndexedColumnValuesByColumnHeader \ntryGetIndexedColumnValuesByColumnHeader \n\n If a column with the given header exists in the table, returns its indexed values. Else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#tryGetKeyValuesByColumnHeaders","title":"Table.tryGetKeyValuesByColumnHeaders","content":"Table.tryGetKeyValuesByColumnHeaders \ntryGetKeyValuesByColumnHeaders \n\n If a key column and a value with the given header exist in the table, returns a tuple list of keys and values (else returns None). Missing values get replaced with the given default value.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#toSparseValueMatrix","title":"Table.toSparseValueMatrix","content":"Table.toSparseValueMatrix \ntoSparseValueMatrix \n\n Reads a complete table. Values are stored sparsely in a dictionary, with the key being a row index and column header tuple.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html","title":"Area","content":"Area \n\n The areas marks the area in which the table lies. \n \nArea.ofBoundaries \nofBoundaries \nArea.toBoundaries \ntoBoundaries \nArea.rightBoundary \nrightBoundary \nArea.leftBoundary \nleftBoundary \nArea.upperBoundary \nupperBoundary \nArea.lowerBoundary \nlowerBoundary \nArea.moveHorizontal \nmoveHorizontal \nArea.moveVertical \nmoveVertical \nArea.extendRight \nextendRight \nArea.extendLeft \nextendLeft \nArea.referenceExceedsAreaRight \nreferenceExceedsAreaRight \nArea.referenceExceedsAreaLeft \nreferenceExceedsAreaLeft \nArea.referenceExceedsAreaAbove \nreferenceExceedsAreaAbove \nArea.referenceExceedsAreaBelow \nreferenceExceedsAreaBelow \nArea.referenceExceedsArea \nreferenceExceedsArea \nArea.isCorrect \nisCorrect"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#ofBoundaries","title":"Area.ofBoundaries","content":"Area.ofBoundaries \nofBoundaries \n\n Given A1-based top left start and bottom right end indices, returns a \u0022A1:A1\u0022-style area-\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#toBoundaries","title":"Area.toBoundaries","content":"Area.toBoundaries \ntoBoundaries \n\n Given a \u0022A1:A1\u0022-style area, returns A1-based cell start and end cellReferences.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#rightBoundary","title":"Area.rightBoundary","content":"Area.rightBoundary \nrightBoundary \n\n Gets the right boundary of the area.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#leftBoundary","title":"Area.leftBoundary","content":"Area.leftBoundary \nleftBoundary \n\n Gets the left boundary of the area.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#upperBoundary","title":"Area.upperBoundary","content":"Area.upperBoundary \nupperBoundary \n\n Gets the Upper boundary of the area.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#lowerBoundary","title":"Area.lowerBoundary","content":"Area.lowerBoundary \nlowerBoundary \n\n Gets the lower boundary of the area.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#moveHorizontal","title":"Area.moveHorizontal","content":"Area.moveHorizontal \nmoveHorizontal \n\n Moves both start and end of the area by the given amount (positive amount moves area to right and vice versa).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#moveVertical","title":"Area.moveVertical","content":"Area.moveVertical \nmoveVertical \n\n Moves both start and end of the area by the given amount (positive amount moves area to right and vice versa).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#extendRight","title":"Area.extendRight","content":"Area.extendRight \nextendRight \n\n Extends the right boundary of the area by the given amount (positive amount increases area to right and vice versa).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#extendLeft","title":"Area.extendLeft","content":"Area.extendLeft \nextendLeft \n\n Extends the left boundary of the area by the given amount (positive amount decreases the area to left and vice versa).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#referenceExceedsAreaRight","title":"Area.referenceExceedsAreaRight","content":"Area.referenceExceedsAreaRight \nreferenceExceedsAreaRight \n\n Returns true if the column index of the reference exceeds the right boundary of the area.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#referenceExceedsAreaLeft","title":"Area.referenceExceedsAreaLeft","content":"Area.referenceExceedsAreaLeft \nreferenceExceedsAreaLeft \n\n Returns true if the column index of the reference exceeds the left boundary of the area.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#referenceExceedsAreaAbove","title":"Area.referenceExceedsAreaAbove","content":"Area.referenceExceedsAreaAbove \nreferenceExceedsAreaAbove \n\n Returns true if the column index of the reference exceeds the upper boundary of the area.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#referenceExceedsAreaBelow","title":"Area.referenceExceedsAreaBelow","content":"Area.referenceExceedsAreaBelow \nreferenceExceedsAreaBelow \n\n Returns true if the column index of the reference exceeds the lower boundary of the area.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#referenceExceedsArea","title":"Area.referenceExceedsArea","content":"Area.referenceExceedsArea \nreferenceExceedsArea \n\n Returns true if the reference does not lie in the boundary of the area.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#isCorrect","title":"Area.isCorrect","content":"Area.isCorrect \nisCorrect \n\n Returns true if the A1:A1-style area is of correct format.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumn.html","title":"TableColumn","content":"TableColumn \n\n Functions for working with a single tableColumn of a table.\n \nTableColumn.getName \ngetName \nTableColumn.getId \ngetId \nTableColumn.create \ncreate"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumn.html#getName","title":"TableColumn.getName","content":"TableColumn.getName \ngetName \n\n Gets Name of a tableColumn.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumn.html#getId","title":"TableColumn.getId","content":"TableColumn.getId \ngetId \n\n Gets 1-based column index of tableColumn.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumn.html#create","title":"TableColumn.create","content":"TableColumn.create \ncreate \n\n Creates a tableColumn of the given name and id.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumns.html","title":"TableColumns","content":"TableColumns \n\n Functions for working with the columns of a table.\n \nTableColumns.get \nget \nTableColumns.getTableColumns \ngetTableColumns \nTableColumns.count \ncount \nTableColumns.create \ncreate"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumns.html#get","title":"TableColumns.get","content":"TableColumns.get \nget \n\n Gets the tableColumns from a table.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumns.html#getTableColumns","title":"TableColumns.getTableColumns","content":"TableColumns.getTableColumns \ngetTableColumns \n\n Gets the columns from a tableColumns element.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumns.html#count","title":"TableColumns.count","content":"TableColumns.count \ncount \n\n Retruns the number of columns in a tableColumns element.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumns.html#create","title":"TableColumns.create","content":"TableColumns.create \ncreate \n\n Creates a tableColumns sequence.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbook.html","title":"Workbook","content":"Workbook \n\n Functions for manipulating Workbooks. (Unmanaged: changing the sheets does not alter the associated worksheets which store the data)\n \nWorkbook.empty \nempty \nWorkbook.get \nget \nWorkbook.set \nset \nWorkbook.init \ninit \nWorkbook.getOrInit \ngetOrInit"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbook.html#empty","title":"Workbook.empty","content":"Workbook.empty \nempty \n\n Creates an empty Workbook.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbook.html#get","title":"Workbook.get","content":"Workbook.get \nget \n\n Gets the Workbook of the WorkbookPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbook.html#set","title":"Workbook.set","content":"Workbook.set \nset \n\n Sets the Workbook of the WorkbookPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbook.html#init","title":"Workbook.init","content":"Workbook.init \ninit \n\n Sets an empty Workbook in the given WorkbookPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbook.html#getOrInit","title":"Workbook.getOrInit","content":"Workbook.getOrInit \ngetOrInit \n\n Returns the Workbookpart associated with the existing or a newly created Workbook.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html","title":"WorkbookPart","content":"WorkbookPart \n\n Functions for working with WorkbookParts.\n \nWorkbookPart.addWorksheetPart \naddWorksheetPart \nWorkbookPart.initWorksheetPart \ninitWorksheetPart \nWorkbookPart.getWorkSheetParts \ngetWorkSheetParts \nWorkbookPart.containsWorkSheetParts \ncontainsWorkSheetParts \nWorkbookPart.getWorksheetPartById \ngetWorksheetPartById \nWorkbookPart.tryGetWorksheetPartById \ntryGetWorksheetPartById \nWorkbookPart.getWorksheetPartID \ngetWorksheetPartID \nWorkbookPart.getSharedStringTablePart \ngetSharedStringTablePart \nWorkbookPart.initSharedStringTablePart \ninitSharedStringTablePart \nWorkbookPart.containsSharedStringTablePart \ncontainsSharedStringTablePart \nWorkbookPart.getOrInitSharedStringTablePart \ngetOrInitSharedStringTablePart \nWorkbookPart.getSharedStringTable \ngetSharedStringTable \nWorkbookPart.getDataOfFirstSheet \ngetDataOfFirstSheet \nWorkbookPart.getOrInitWorksheetPartByName \ngetOrInitWorksheetPartByName \nWorkbookPart.appendWorksheet \nappendWorksheet \nWorkbookPart.appendSheet \nappendSheet \nWorkbookPart.replaceSheetDataByName \nreplaceSheetDataByName"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#addWorksheetPart","title":"WorkbookPart.addWorksheetPart","content":"WorkbookPart.addWorksheetPart \naddWorksheetPart \n\n Add a WorksheetPart to the WorkbookPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#initWorksheetPart","title":"WorkbookPart.initWorksheetPart","content":"WorkbookPart.initWorksheetPart \ninitWorksheetPart \n\n Add an empty WorksheetPart to the WorkbookPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#getWorkSheetParts","title":"WorkbookPart.getWorkSheetParts","content":"WorkbookPart.getWorkSheetParts \ngetWorkSheetParts \n\n Get the WorksheetParts of the WorkbookPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#containsWorkSheetParts","title":"WorkbookPart.containsWorkSheetParts","content":"WorkbookPart.containsWorkSheetParts \ncontainsWorkSheetParts \n\n Returns true if the WorkbookPart contains at least one WorksheetPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#getWorksheetPartById","title":"WorkbookPart.getWorksheetPartById","content":"WorkbookPart.getWorksheetPartById \ngetWorksheetPartById \n\n Gets the WorksheetPart of the WorkbookPart with the given ID.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#tryGetWorksheetPartById","title":"WorkbookPart.tryGetWorksheetPartById","content":"WorkbookPart.tryGetWorksheetPartById \ntryGetWorksheetPartById \n\n If the WorkbookPart contains the WorksheetPart with the given ID, returns it. Else returns None.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#getWorksheetPartID","title":"WorkbookPart.getWorksheetPartID","content":"WorkbookPart.getWorksheetPartID \ngetWorksheetPartID \n\n Gets the ID of the WorksheetPart of the WorkbookPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#getSharedStringTablePart","title":"WorkbookPart.getSharedStringTablePart","content":"WorkbookPart.getSharedStringTablePart \ngetSharedStringTablePart \n\n Gets the SharedStringTablePart of a WorkbookPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#initSharedStringTablePart","title":"WorkbookPart.initSharedStringTablePart","content":"WorkbookPart.initSharedStringTablePart \ninitSharedStringTablePart \n\n Sets an empty SharedStringTablePart in the given WorkbookPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#containsSharedStringTablePart","title":"WorkbookPart.containsSharedStringTablePart","content":"WorkbookPart.containsSharedStringTablePart \ncontainsSharedStringTablePart \n\n Returns true if the WorkbookPart contains a SharedStringTablePart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#getOrInitSharedStringTablePart","title":"WorkbookPart.getOrInitSharedStringTablePart","content":"WorkbookPart.getOrInitSharedStringTablePart \ngetOrInitSharedStringTablePart \n\n Returns the existing or a newly created SharedStringTablePart associated with the WorkbookPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#getSharedStringTable","title":"WorkbookPart.getSharedStringTable","content":"WorkbookPart.getSharedStringTable \ngetSharedStringTable \n\n Returns the SharedStringTable of a WorkbookPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#getDataOfFirstSheet","title":"WorkbookPart.getDataOfFirstSheet","content":"WorkbookPart.getDataOfFirstSheet \ngetDataOfFirstSheet \n\n Returns the SheetData of the first sheet of the given WorkbookPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#getOrInitWorksheetPartByName","title":"WorkbookPart.getOrInitWorksheetPartByName","content":"WorkbookPart.getOrInitWorksheetPartByName \ngetOrInitWorksheetPartByName \n\n Appends a worksheet to the SpreadsheetDocument.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#appendWorksheet","title":"WorkbookPart.appendWorksheet","content":"WorkbookPart.appendWorksheet \nappendWorksheet \n\n Appends a worksheet to the SpreadsheetDocument.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#appendSheet","title":"WorkbookPart.appendSheet","content":"WorkbookPart.appendSheet \nappendSheet \n\n Appends a new sheet with the given SheetData to the SpreadsheetDocument.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#replaceSheetDataByName","title":"WorkbookPart.replaceSheetDataByName","content":"WorkbookPart.replaceSheetDataByName \nreplaceSheetDataByName \n\n Replaces the SheetData of the Sheet with the given sheetname.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html","title":"Worksheet","content":"Worksheet \n\n Stores data of the sheet and the index of the sheet and\n functions for working with the worksheetpart. (Unmanaged: changing a worksheet does not alter the sheet which links the worksheet to the excel workbook)\n \nWorksheet.Comments \nComments \nWorksheet.WorksheetCommentsPart \nWorksheetCommentsPart \nWorksheet.WorksheetPart \nWorksheetPart \nWorksheet.empty \nempty \nWorksheet.addSheetData \naddSheetData \nWorksheet.hasSheetData \nhasSheetData \nWorksheet.ofSheetData \nofSheetData \nWorksheet.getSheetData \ngetSheetData \nWorksheet.setSheetData \nsetSheetData \nWorksheet.get \nget \nWorksheet.setWorksheet \nsetWorksheet \nWorksheet.init \ninit \nWorksheet.getOrInit \ngetOrInit"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#empty","title":"Worksheet.empty","content":"Worksheet.empty \nempty \n\n Empty Worksheet\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#addSheetData","title":"Worksheet.addSheetData","content":"Worksheet.addSheetData \naddSheetData \n\n Associates a SheetData with the Worksheet.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#hasSheetData","title":"Worksheet.hasSheetData","content":"Worksheet.hasSheetData \nhasSheetData \n\n Returns true, if the Worksheet contains SheetData.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#ofSheetData","title":"Worksheet.ofSheetData","content":"Worksheet.ofSheetData \nofSheetData \n\n Creates a Worksheet containing the given SheetData.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#getSheetData","title":"Worksheet.getSheetData","content":"Worksheet.getSheetData \ngetSheetData \n\n Returns the sheetdata associated with the Worksheet.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#setSheetData","title":"Worksheet.setSheetData","content":"Worksheet.setSheetData \nsetSheetData \n\n Sets the SheetData of a Worksheet.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#get","title":"Worksheet.get","content":"Worksheet.get \nget \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#setWorksheet","title":"Worksheet.setWorksheet","content":"Worksheet.setWorksheet \nsetWorksheet \n\n Sets the given Worksheet with the WorksheetPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#init","title":"Worksheet.init","content":"Worksheet.init \ninit \nAssociates an empty Worksheet with the WorksheetPart."},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#getOrInit","title":"Worksheet.getOrInit","content":"Worksheet.getOrInit \ngetOrInit \n\n Returns the existing or a newly created Worksheet associated with the WorksheetPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-comments.html","title":"Comments","content":"Comments \n\n Functions for working with Comments.\n \nComments.get \nget \nComments.getCommentList \ngetCommentList \nComments.getAuthors \ngetAuthors \nComments.getCommentAndNoteTexts \ngetCommentAndNoteTexts \nComments.getCommentsAuthorsTextsRefs \ngetCommentsAuthorsTextsRefs \nComments.getNotesAuthorsTextsRefs \ngetNotesAuthorsTextsRefs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-comments.html#get","title":"Comments.get","content":"Comments.get \nget \n\n Returns the comments of the WorksheetCommentsPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-comments.html#getCommentList","title":"Comments.getCommentList","content":"Comments.getCommentList \ngetCommentList \n\n Returns the CommentList of the given Comments.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-comments.html#getAuthors","title":"Comments.getAuthors","content":"Comments.getAuthors \ngetAuthors \nReturns a sequence of author names from the Comments. \nAuthor names might be encrypted in the pattern of \u003Cpre\u003E\u003Ccode class=\u0022\u0022\u003Etc={...}\u003C/code\u003E\u003C/pre\u003E"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-comments.html#getCommentAndNoteTexts","title":"Comments.getCommentAndNoteTexts","content":"Comments.getCommentAndNoteTexts \ngetCommentAndNoteTexts \n\n Returns all Comments and Notes as strings of a CommentList.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-comments.html#getCommentsAuthorsTextsRefs","title":"Comments.getCommentsAuthorsTextsRefs","content":"Comments.getCommentsAuthorsTextsRefs \ngetCommentsAuthorsTextsRefs \n\n Returns a triple of Comments consisting of the author, the comment text written, and the cell reference (A1-style).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-comments.html#getNotesAuthorsTextsRefs","title":"Comments.getNotesAuthorsTextsRefs","content":"Comments.getNotesAuthorsTextsRefs \ngetNotesAuthorsTextsRefs \n\n Returns a triple of Notes consisting of the author, the note text written, and the cell reference (A1-style).\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-worksheetcommentspart.html","title":"WorksheetCommentsPart","content":"WorksheetCommentsPart \n\n Functions for extracting / working with WorksheetCommentsParts.\n \nWorksheetCommentsPart.get \nget \nWorksheetCommentsPart.getComments \ngetComments"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-worksheetcommentspart.html#get","title":"WorksheetCommentsPart.get","content":"WorksheetCommentsPart.get \nget \n\n Returns the WorksheetCommentsPart associated with a WorksheetPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-worksheetcommentspart.html#getComments","title":"WorksheetCommentsPart.getComments","content":"WorksheetCommentsPart.getComments \ngetComments \n\n Returns the comments of the WorksheetCommentsPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-worksheetpart.html","title":"WorksheetPart","content":"WorksheetPart \n\n Functions for extracting / working with WorksheetParts.\n \nWorksheetPart.getByID \ngetByID \nWorksheetPart.getSheetData \ngetSheetData \nWorksheetPart.getWorksheetCommentsPart \ngetWorksheetCommentsPart \nWorksheetPart.getTables \ngetTables"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-worksheetpart.html#getByID","title":"WorksheetPart.getByID","content":"WorksheetPart.getByID \ngetByID \n\n Returns the WorksheetPart matching the given sheetID.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-worksheetpart.html#getSheetData","title":"WorksheetPart.getSheetData","content":"WorksheetPart.getSheetData \ngetSheetData \n\n Returns the SheetData associated with the WorksheetPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-worksheetpart.html#getWorksheetCommentsPart","title":"WorksheetPart.getWorksheetCommentsPart","content":"WorksheetPart.getWorksheetCommentsPart \ngetWorksheetCommentsPart \n\n Returns the WorksheetCommentsPart associated with a WorksheetPart.\n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-worksheetpart.html#getTables","title":"WorksheetPart.getTables","content":"WorksheetPart.getTables \ngetTables \nReturns the Tables associated with a WorksheetPart"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html","title":"ZipArchiveReader","content":"ZipArchiveReader \n \nZipArchiveReader.DType \nDType \nZipArchiveReader.FsWorkbook \nFsWorkbook \nZipArchiveReader.XmlReader \nXmlReader \nZipArchiveReader.CellFormat \nCellFormat \nZipArchiveReader.NumberFormat \nNumberFormat \nZipArchiveReader.Relationship \nRelationship \nZipArchiveReader.Relationships \nRelationships \nZipArchiveReader.SharedStrings \nSharedStrings \nZipArchiveReader.Styles \nStyles \nZipArchiveReader.WorkBook \nWorkBook \nZipArchiveReader.bool \nbool \nZipArchiveReader.dateTimeFormats \ndateTimeFormats \nZipArchiveReader.customFormats \ncustomFormats \nZipArchiveReader.parseRelationsships \nparseRelationsships \nZipArchiveReader.getWbRelationships \ngetWbRelationships \nZipArchiveReader.getWsRelationships \ngetWsRelationships \nZipArchiveReader.getSharedStrings \ngetSharedStrings \nZipArchiveReader.getStyles \ngetStyles \nZipArchiveReader.parseTable \nparseTable \nZipArchiveReader.getTables \ngetTables \nZipArchiveReader.parseCell \nparseCell \nZipArchiveReader.parseWorksheet \nparseWorksheet \nZipArchiveReader.parseWorkbook \nparseWorkbook"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#bool","title":"ZipArchiveReader.bool","content":"ZipArchiveReader.bool \nbool \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#dateTimeFormats","title":"ZipArchiveReader.dateTimeFormats","content":"ZipArchiveReader.dateTimeFormats \ndateTimeFormats \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#customFormats","title":"ZipArchiveReader.customFormats","content":"ZipArchiveReader.customFormats \ncustomFormats \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#parseRelationsships","title":"ZipArchiveReader.parseRelationsships","content":"ZipArchiveReader.parseRelationsships \nparseRelationsships \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#getWbRelationships","title":"ZipArchiveReader.getWbRelationships","content":"ZipArchiveReader.getWbRelationships \ngetWbRelationships \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#getWsRelationships","title":"ZipArchiveReader.getWsRelationships","content":"ZipArchiveReader.getWsRelationships \ngetWsRelationships \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#getSharedStrings","title":"ZipArchiveReader.getSharedStrings","content":"ZipArchiveReader.getSharedStrings \ngetSharedStrings \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#getStyles","title":"ZipArchiveReader.getStyles","content":"ZipArchiveReader.getStyles \ngetStyles \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#parseTable","title":"ZipArchiveReader.parseTable","content":"ZipArchiveReader.parseTable \nparseTable \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#getTables","title":"ZipArchiveReader.getTables","content":"ZipArchiveReader.getTables \ngetTables \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#parseCell","title":"ZipArchiveReader.parseCell","content":"ZipArchiveReader.parseCell \nparseCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#parseWorksheet","title":"ZipArchiveReader.parseWorksheet","content":"ZipArchiveReader.parseWorksheet \nparseWorksheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#parseWorkbook","title":"ZipArchiveReader.parseWorkbook","content":"ZipArchiveReader.parseWorkbook \nparseWorkbook \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-dtype.html","title":"DType","content":"DType \n \nDType.boolean \nboolean \nDType.number \nnumber \nDType.error \nerror \nDType.sharedString \nsharedString \nDType.string \nstring \nDType.inlineString \ninlineString \nDType.date \ndate"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-dtype.html#boolean","title":"DType.boolean","content":"DType.boolean \nboolean \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-dtype.html#number","title":"DType.number","content":"DType.number \nnumber \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-dtype.html#error","title":"DType.error","content":"DType.error \nerror \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-dtype.html#sharedString","title":"DType.sharedString","content":"DType.sharedString \nsharedString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-dtype.html#string","title":"DType.string","content":"DType.string \nstring \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-dtype.html#inlineString","title":"DType.inlineString","content":"DType.inlineString \ninlineString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-dtype.html#date","title":"DType.date","content":"DType.date \ndate \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-fsworkbook.html","title":"FsWorkbook","content":"FsWorkbook \n \nFsWorkbook.fromZipArchive \nfromZipArchive \nFsWorkbook.fromXlsxStream \nfromXlsxStream \nFsWorkbook.fromXlsxBytes \nfromXlsxBytes \nFsWorkbook.fromXlsxFile \nfromXlsxFile"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-fsworkbook.html#fromZipArchive","title":"FsWorkbook.fromZipArchive","content":"FsWorkbook.fromZipArchive \nfromZipArchive \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-fsworkbook.html#fromXlsxStream","title":"FsWorkbook.fromXlsxStream","content":"FsWorkbook.fromXlsxStream \nfromXlsxStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-fsworkbook.html#fromXlsxBytes","title":"FsWorkbook.fromXlsxBytes","content":"FsWorkbook.fromXlsxBytes \nfromXlsxBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-fsworkbook.html#fromXlsxFile","title":"FsWorkbook.fromXlsxFile","content":"FsWorkbook.fromXlsxFile \nfromXlsxFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-xmlreader.html","title":"XmlReader","content":"XmlReader \n \nXmlReader.isElemWithName \nisElemWithName"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-xmlreader.html#isElemWithName","title":"XmlReader.isElemWithName","content":"XmlReader.isElemWithName \nisElemWithName \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-cellformat.html","title":"CellFormat","content":"CellFormat \n \nCellFormat.isDateTime \nisDateTime \nCellFormat.NumberFormatId \nNumberFormatId \nCellFormat.ApllyNumberFormat \nApllyNumberFormat"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-cellformat.html#isDateTime","title":"CellFormat.isDateTime","content":"CellFormat.isDateTime \nisDateTime \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-cellformat.html#NumberFormatId","title":"CellFormat.NumberFormatId","content":"CellFormat.NumberFormatId \nNumberFormatId \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-cellformat.html#ApllyNumberFormat","title":"CellFormat.ApllyNumberFormat","content":"CellFormat.ApllyNumberFormat \nApllyNumberFormat \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-numberformat.html","title":"NumberFormat","content":"NumberFormat \n \nNumberFormat.isDateTime \nisDateTime \nNumberFormat.Id \nId \nNumberFormat.FormatCode \nFormatCode"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-numberformat.html#isDateTime","title":"NumberFormat.isDateTime","content":"NumberFormat.isDateTime \nisDateTime \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-numberformat.html#Id","title":"NumberFormat.Id","content":"NumberFormat.Id \nId \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-numberformat.html#FormatCode","title":"NumberFormat.FormatCode","content":"NumberFormat.FormatCode \nFormatCode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationship.html","title":"Relationship","content":"Relationship \n \nRelationship.Id \nId \nRelationship.Type \nType \nRelationship.Target \nTarget"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationship.html#Id","title":"Relationship.Id","content":"Relationship.Id \nId \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationship.html#Type","title":"Relationship.Type","content":"Relationship.Type \nType \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationship.html#Target","title":"Relationship.Target","content":"Relationship.Target \nTarget \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationships.html","title":"Relationships","content":"Relationships \n \nRelationships.Item \nItem \nRelationships.Count \nCount \nRelationships.IsEmpty \nIsEmpty \nRelationships.Keys \nKeys \nRelationships.Values \nValues"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationships.html#Item","title":"Relationships.Item","content":"Relationships.Item \nItem \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationships.html#Count","title":"Relationships.Count","content":"Relationships.Count \nCount \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationships.html#IsEmpty","title":"Relationships.IsEmpty","content":"Relationships.IsEmpty \nIsEmpty \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationships.html#Keys","title":"Relationships.Keys","content":"Relationships.Keys \nKeys \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationships.html#Values","title":"Relationships.Values","content":"Relationships.Values \nValues \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-sharedstrings.html","title":"SharedStrings","content":"SharedStrings \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-styles.html","title":"Styles","content":"Styles \n \nStyles.NumberFormats \nNumberFormats \nStyles.CellFormats \nCellFormats"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-styles.html#NumberFormats","title":"Styles.NumberFormats","content":"Styles.NumberFormats \nNumberFormats \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-styles.html#CellFormats","title":"Styles.CellFormats","content":"Styles.CellFormats \nCellFormats \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-workbook.html","title":"WorkBook","content":"WorkBook \n \nWorkBook.Entries \nEntries \nWorkBook.Mode \nMode"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-workbook.html#Entries","title":"WorkBook.Entries","content":"WorkBook.Entries \nEntries \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-workbook.html#Mode","title":"WorkBook.Mode","content":"WorkBook.Mode \nMode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sst.html","title":"SST","content":"SST \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-writer.html","title":"Writer","content":"Writer \n \nWriter.toFile \ntoFile \nWriter.toJsonFile \ntoJsonFile \nWriter.toJsonString \ntoJsonString \nWriter.toXlsxBytes \ntoXlsxBytes \nWriter.toXlsxFile \ntoXlsxFile \nWriter.toXlsxStream \ntoXlsxStream"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-writer.html#toFile","title":"Writer.toFile","content":"Writer.toFile \ntoFile \n\n Writes an FsWorkbook into a binary file at the given path.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-writer.html#toJsonFile","title":"Writer.toJsonFile","content":"Writer.toJsonFile \ntoJsonFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-writer.html#toJsonString","title":"Writer.toJsonString","content":"Writer.toJsonString \ntoJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-writer.html#toXlsxBytes","title":"Writer.toXlsxBytes","content":"Writer.toXlsxBytes \ntoXlsxBytes \n\n Returns an FsWorkbook in the form of a byte array.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-writer.html#toXlsxFile","title":"Writer.toXlsxFile","content":"Writer.toXlsxFile \ntoXlsxFile \n\n Writes an FsWorkbook into a binary file at the given path.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-writer.html#toXlsxStream","title":"Writer.toXlsxStream","content":"Writer.toXlsxStream \ntoXlsxStream \n\n Writes an FsWorkbook into a given MemoryStream.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html","title":"FsSpreadsheet","content":"FsSpreadsheet \n \nFsSpreadsheet.fromXlsxFile \nfromXlsxFile \nFsSpreadsheet.fromXlsxStream \nfromXlsxStream \nFsSpreadsheet.fromXlsxBytes \nfromXlsxBytes \nFsSpreadsheet.toXlsxFile \ntoXlsxFile \nFsSpreadsheet.toXlsxBytes \ntoXlsxBytes \nFsSpreadsheet.ToXlsxFile \nToXlsxFile \nFsSpreadsheet.ToXlsxBytes \nToXlsxBytes \nFsSpreadsheet.fromJsonString \nfromJsonString \nFsSpreadsheet.toJsonString \ntoJsonString \nFsSpreadsheet.ToJsonString \nToJsonString"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#fromXlsxFile","title":"FsSpreadsheet.fromXlsxFile","content":"FsSpreadsheet.fromXlsxFile \nfromXlsxFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#fromXlsxStream","title":"FsSpreadsheet.fromXlsxStream","content":"FsSpreadsheet.fromXlsxStream \nfromXlsxStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#fromXlsxBytes","title":"FsSpreadsheet.fromXlsxBytes","content":"FsSpreadsheet.fromXlsxBytes \nfromXlsxBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#toXlsxFile","title":"FsSpreadsheet.toXlsxFile","content":"FsSpreadsheet.toXlsxFile \ntoXlsxFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#toXlsxBytes","title":"FsSpreadsheet.toXlsxBytes","content":"FsSpreadsheet.toXlsxBytes \ntoXlsxBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#ToXlsxFile","title":"FsSpreadsheet.ToXlsxFile","content":"FsSpreadsheet.ToXlsxFile \nToXlsxFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#ToXlsxBytes","title":"FsSpreadsheet.ToXlsxBytes","content":"FsSpreadsheet.ToXlsxBytes \nToXlsxBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#fromJsonString","title":"FsSpreadsheet.fromJsonString","content":"FsSpreadsheet.fromJsonString \nfromJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#toJsonString","title":"FsSpreadsheet.toJsonString","content":"FsSpreadsheet.toJsonString \ntoJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#ToJsonString","title":"FsSpreadsheet.ToJsonString","content":"FsSpreadsheet.ToJsonString \nToJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell.html","title":"PyCell","content":"PyCell \n \nPyCell.DateTimeStatic \nDateTimeStatic \nPyCell.datetime \ndatetime \nPyCell.DateTime \nDateTime \nPyCell.toUniversalTimePy \ntoUniversalTimePy \nPyCell.fromFsCell \nfromFsCell \nPyCell.toFsCell \ntoFsCell"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell.html#DateTime","title":"PyCell.DateTime","content":"PyCell.DateTime \nDateTime \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell.html#toUniversalTimePy","title":"PyCell.toUniversalTimePy","content":"PyCell.toUniversalTimePy \ntoUniversalTimePy \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell.html#fromFsCell","title":"PyCell.fromFsCell","content":"PyCell.fromFsCell \nfromFsCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell.html#toFsCell","title":"PyCell.toFsCell","content":"PyCell.toFsCell \ntoFsCell \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell-datetimestatic.html","title":"DateTimeStatic","content":"DateTimeStatic \n \nDateTimeStatic.fromTimeStamp \nfromTimeStamp"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell-datetimestatic.html#fromTimeStamp","title":"DateTimeStatic.fromTimeStamp","content":"DateTimeStatic.fromTimeStamp \nfromTimeStamp \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell-datetime.html","title":"datetime","content":"datetime \n \ndatetime.decoy \ndecoy"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell-datetime.html#decoy","title":"datetime.decoy","content":"datetime.decoy \ndecoy \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycelltype.html","title":"PyCellType","content":"PyCellType \n \nPyCellType.fromDataTyoe \nfromDataTyoe \nPyCellType.toDataType \ntoDataType"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycelltype.html#fromDataTyoe","title":"PyCellType.fromDataTyoe","content":"PyCellType.fromDataTyoe \nfromDataTyoe \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycelltype.html#toDataType","title":"PyCellType.toDataType","content":"PyCellType.toDataType \ntoDataType \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable.html","title":"PyTable","content":"PyTable \n \nPyTable.TableStyleStatic \nTableStyleStatic \nPyTable.tablestyle \ntablestyle \nPyTable.TableStyleInfo \nTableStyleInfo \nPyTable.defaultTableStyle \ndefaultTableStyle \nPyTable.fromFsTable \nfromFsTable \nPyTable.toFsTable \ntoFsTable"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable.html#TableStyleInfo","title":"PyTable.TableStyleInfo","content":"PyTable.TableStyleInfo \nTableStyleInfo \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable.html#defaultTableStyle","title":"PyTable.defaultTableStyle","content":"PyTable.defaultTableStyle \ndefaultTableStyle \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable.html#fromFsTable","title":"PyTable.fromFsTable","content":"PyTable.fromFsTable \nfromFsTable \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable.html#toFsTable","title":"PyTable.toFsTable","content":"PyTable.toFsTable \ntoFsTable \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable-tablestylestatic.html","title":"TableStyleStatic","content":"TableStyleStatic \n \nTableStyleStatic.create \ncreate"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable-tablestylestatic.html#create","title":"TableStyleStatic.create","content":"TableStyleStatic.create \ncreate \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable-tablestyle.html","title":"tablestyle","content":"tablestyle \n \ntablestyle.name \nname \ntablestyle.showColumnStripes \nshowColumnStripes \ntablestyle.showFirstColumn \nshowFirstColumn \ntablestyle.showLastColumn \nshowLastColumn \ntablestyle.showRowStripes \nshowRowStripes"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable-tablestyle.html#name","title":"tablestyle.name","content":"tablestyle.name \nname \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable-tablestyle.html#showColumnStripes","title":"tablestyle.showColumnStripes","content":"tablestyle.showColumnStripes \nshowColumnStripes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable-tablestyle.html#showFirstColumn","title":"tablestyle.showFirstColumn","content":"tablestyle.showFirstColumn \nshowFirstColumn \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable-tablestyle.html#showLastColumn","title":"tablestyle.showLastColumn","content":"tablestyle.showLastColumn \nshowLastColumn \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable-tablestyle.html#showRowStripes","title":"tablestyle.showRowStripes","content":"tablestyle.showRowStripes \nshowRowStripes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pyworkbook.html","title":"PyWorkbook","content":"PyWorkbook \n \nPyWorkbook.fromFsWorkbook \nfromFsWorkbook \nPyWorkbook.toFsWorkbook \ntoFsWorkbook"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pyworkbook.html#fromFsWorkbook","title":"PyWorkbook.fromFsWorkbook","content":"PyWorkbook.fromFsWorkbook \nfromFsWorkbook \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pyworkbook.html#toFsWorkbook","title":"PyWorkbook.toFsWorkbook","content":"PyWorkbook.toFsWorkbook \ntoFsWorkbook \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pyworksheet.html","title":"PyWorksheet","content":"PyWorksheet \n \nPyWorksheet.fromFsWorksheet \nfromFsWorksheet \nPyWorksheet.toFsWorksheet \ntoFsWorksheet"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pyworksheet.html#fromFsWorksheet","title":"PyWorksheet.fromFsWorksheet","content":"PyWorksheet.fromFsWorksheet \nfromFsWorksheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pyworksheet.html#toFsWorksheet","title":"PyWorksheet.toFsWorksheet","content":"PyWorksheet.toFsWorksheet \ntoFsWorksheet \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-json.html","title":"Json","content":"Json \n\n This does currently not correctly work if you want to use this from js\n https://github.com/fable-compiler/Fable/issues/3498\n \nJson.fromJsonString \nfromJsonString \nJson.toJsonString \ntoJsonString \nJson.tryFromJsonString \ntryFromJsonString"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-json.html#fromJsonString","title":"Json.fromJsonString","content":"Json.fromJsonString \nfromJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-json.html#toJsonString","title":"Json.toJsonString","content":"Json.toJsonString \ntoJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-json.html#tryFromJsonString","title":"Json.tryFromJsonString","content":"Json.tryFromJsonString \ntryFromJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-xlsx.html","title":"Xlsx","content":"Xlsx \n\n This does currently not correctly work if you want to use this from js\n https://github.com/fable-compiler/Fable/issues/3498\n \nXlsx.fromXlsxBytes \nfromXlsxBytes \nXlsx.fromXlsxFile \nfromXlsxFile \nXlsx.fromXlsxStream \nfromXlsxStream \nXlsx.toXlsxBytes \ntoXlsxBytes \nXlsx.toXlsxFile \ntoXlsxFile"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-xlsx.html#fromXlsxBytes","title":"Xlsx.fromXlsxBytes","content":"Xlsx.fromXlsxBytes \nfromXlsxBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-xlsx.html#fromXlsxFile","title":"Xlsx.fromXlsxFile","content":"Xlsx.fromXlsxFile \nfromXlsxFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-xlsx.html#fromXlsxStream","title":"Xlsx.fromXlsxStream","content":"Xlsx.fromXlsxStream \nfromXlsxStream \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-xlsx.html#toXlsxBytes","title":"Xlsx.toXlsxBytes","content":"Xlsx.toXlsxBytes \ntoXlsxBytes \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-xlsx.html#toXlsxFile","title":"Xlsx.toXlsxFile","content":"Xlsx.toXlsxFile \ntoXlsxFile \n"},{"uri":"/FsSpreadsheet/index.html","title":"FsSpreadsheet Documentation\r\n","content":"# FsSpreadsheet Documentation\r\n\r\nFsSpreadsheet is a library for reading and writing spreadsheets in F#, Javascript and Python using Fable. It is a wrapper of the Python library openpyxl (https://openpyxl.readthedocs.io/en/stable/) and the Javascript library exceljs (https://www.npmjs.com/package/@nfdi4plants/exceljs).\r\n\r\n## Installation\r\n\r\n### F#\r\n\r\nProject\r\n\u0060\u0060\u0060shell\r\ndotnet add package FsSpreadsheet.Net\r\n\u0060\u0060\u0060\r\n\r\nScript\r\n\u0060\u0060\u0060fsharp\r\n#r \u0022nuget: FsSpreadsheet.Net\u0022\r\n\r\nopen FsSpreadsheet\r\nopen FsSpreadsheet.Net\r\n\u0060\u0060\u0060\r\n\r\n### Javascript\r\n\r\n\u0060\u0060\u0060shell\r\nnpm install @fslab/fsspreadsheet\r\n\u0060\u0060\u0060\r\n\r\n### Python\r\n\r\n\u0060\u0060\u0060shell\r\npip install fsspreadsheet\r\n\u0060\u0060\u0060\r\n\r\n## Usage_Xlsx_IO\r\n\r\n### F#\r\n\r\n\u0060\u0060\u0060fsharp\r\nopen FsSpreadsheet\r\nopen FsSpreadsheet.Net\r\n\r\nlet path = \u0022path/to/spreadsheet.xlsx\u0022\r\n\r\nlet wb = FsWorkbook.fromXlsxFile(path)\r\n\r\nlet newPath = \u0022path/to/new/spreadsheet.xlsx\u0022\r\n\r\nwb.ToXlsxFile(newPath)\r\n\u0060\u0060\u0060\r\n\r\n### Javascript\r\n\r\n\u0060\u0060\u0060javascript\r\nimport { Xlsx } from \u0027@fslab/fsspreadsheet/Xlsx.js\u0027;\r\n\r\nconst path = \u0022path/to/spreadsheet.xlsx\u0022\r\n\r\nconst wb = Xlsx.fromXlsxFile(path)\r\n\r\nconst newPath = \u0022path/to/new/spreadsheet.xlsx\u0022\r\n\r\nXlsx.toXlsxFile(newPath,wb)\r\n\u0060\u0060\u0060\r\n\r\n### Python\r\n\r\n\u0060\u0060\u0060python\r\nfrom fsspreadsheet.xlsx import Xlsx\r\n\r\npath = \u0022path/to/spreadsheet.xlsx\u0022\r\n\r\nwb = Xlsx.from_xlsx_file(path)\r\n\r\nnewPath = \u0022path/to/new/spreadsheet.xlsx\u0022\r\n\r\nXlsx.to_xlsx_file(newPath,wb)\r\n\u0060\u0060\u0060\r\n\r\n\r\n## Usage_Json_IO\r\n\r\n### F#\r\n\r\n\u0060\u0060\u0060fsharp\r\nopen FsSpreadsheet\r\nopen FsSpreadsheet.Net\r\n\r\nlet path = \u0022path/to/spreadsheet.json\u0022\r\n\r\nlet wb = FsWorkbook.fromJsonFile(path)\r\n\r\nlet newPath = \u0022path/to/new/spreadsheet.json\u0022\r\n\r\nwb.ToJsonFile(newPath)\r\n\u0060\u0060\u0060\r\n\r\n### Javascript\r\n\r\n\u0060\u0060\u0060javascript\r\nimport { Json } from \u0027@fslab/fsspreadsheet/Json.js\u0027;\r\n\r\nconst path = \u0022path/to/spreadsheet.json\u0022\r\n\r\nconst wb = Json.fromJsonFile(path)\r\n\r\nconst newPath = \u0022path/to/new/spreadsheet.json\u0022\r\n\r\nJson.toJsonFile(newPath,wb)\r\n\u0060\u0060\u0060\r\n\r\n### Python\r\n\r\n\u0060\u0060\u0060python\r\nfrom fsspreadsheet.json import Json\r\n\r\npath = \u0022path/to/spreadsheet.json\u0022\r\n\r\nwb = Json.from_json_file(path)\r\n\r\nnewPath = \u0022path/to/new/spreadsheet.json\u0022\r\n\r\nJson.to_json_file(newPath,wb)\r\n\u0060\u0060\u0060\r\n"}] \ No newline at end of file diff --git a/reference/fsspreadsheet-cellreference.html b/reference/fsspreadsheet-cellreference.html index e8514ca..6c03918 100644 --- a/reference/fsspreadsheet-cellreference.html +++ b/reference/fsspreadsheet-cellreference.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-csvio-fsextensions.html b/reference/fsspreadsheet-csvio-fsextensions.html index 22507d4..74a05f5 100644 --- a/reference/fsspreadsheet-csvio-fsextensions.html +++ b/reference/fsspreadsheet-csvio-fsextensions.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-csvio-writer.html b/reference/fsspreadsheet-csvio-writer.html index 33b5035..281355f 100644 --- a/reference/fsspreadsheet-csvio-writer.html +++ b/reference/fsspreadsheet-csvio-writer.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-csvio.html b/reference/fsspreadsheet-csvio.html index f7056ad..7a6cac2 100644 --- a/reference/fsspreadsheet-csvio.html +++ b/reference/fsspreadsheet-csvio.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-datatype.html b/reference/fsspreadsheet-datatype.html index 73dce92..58057fc 100644 --- a/reference/fsspreadsheet-datatype.html +++ b/reference/fsspreadsheet-datatype.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dictionary.html b/reference/fsspreadsheet-dictionary.html index af6955f..0a423fc 100644 --- a/reference/fsspreadsheet-dictionary.html +++ b/reference/fsspreadsheet-dictionary.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-cellbuilder.html b/reference/fsspreadsheet-dsl-cellbuilder.html index 67859a9..f89fe35 100644 --- a/reference/fsspreadsheet-dsl-cellbuilder.html +++ b/reference/fsspreadsheet-dsl-cellbuilder.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-cellelement.html b/reference/fsspreadsheet-dsl-cellelement.html index c8b0d8e..85b9707 100644 --- a/reference/fsspreadsheet-dsl-cellelement.html +++ b/reference/fsspreadsheet-dsl-cellelement.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-columnbuilder.html b/reference/fsspreadsheet-dsl-columnbuilder.html index ea47ffa..a5bbfa6 100644 --- a/reference/fsspreadsheet-dsl-columnbuilder.html +++ b/reference/fsspreadsheet-dsl-columnbuilder.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-columnelement.html b/reference/fsspreadsheet-dsl-columnelement.html index ff91dd7..65e7ece 100644 --- a/reference/fsspreadsheet-dsl-columnelement.html +++ b/reference/fsspreadsheet-dsl-columnelement.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-columnindex.html b/reference/fsspreadsheet-dsl-columnindex.html index eba54fe..ee7f093 100644 --- a/reference/fsspreadsheet-dsl-columnindex.html +++ b/reference/fsspreadsheet-dsl-columnindex.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-dsl.html b/reference/fsspreadsheet-dsl-dsl.html index 67ea823..6cee60f 100644 --- a/reference/fsspreadsheet-dsl-dsl.html +++ b/reference/fsspreadsheet-dsl-dsl.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-expression-expressionsource-1.html b/reference/fsspreadsheet-dsl-expression-expressionsource-1.html index 6c12ff2..e3cd2c6 100644 --- a/reference/fsspreadsheet-dsl-expression-expressionsource-1.html +++ b/reference/fsspreadsheet-dsl-expression-expressionsource-1.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-expression-optionalsource-1.html b/reference/fsspreadsheet-dsl-expression-optionalsource-1.html index c4cc5a7..5c32bbe 100644 --- a/reference/fsspreadsheet-dsl-expression-optionalsource-1.html +++ b/reference/fsspreadsheet-dsl-expression-optionalsource-1.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-expression-requiredsource-1.html b/reference/fsspreadsheet-dsl-expression-requiredsource-1.html index 239c213..fbadb58 100644 --- a/reference/fsspreadsheet-dsl-expression-requiredsource-1.html +++ b/reference/fsspreadsheet-dsl-expression-requiredsource-1.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-expression.html b/reference/fsspreadsheet-dsl-expression.html index 592b513..1ec9817 100644 --- a/reference/fsspreadsheet-dsl-expression.html +++ b/reference/fsspreadsheet-dsl-expression.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-message.html b/reference/fsspreadsheet-dsl-message.html index dfe6eb4..0460594 100644 --- a/reference/fsspreadsheet-dsl-message.html +++ b/reference/fsspreadsheet-dsl-message.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-messages.html b/reference/fsspreadsheet-dsl-messages.html index 035473d..8fae932 100644 --- a/reference/fsspreadsheet-dsl-messages.html +++ b/reference/fsspreadsheet-dsl-messages.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-operators.html b/reference/fsspreadsheet-dsl-operators.html index 8ad7a9a..e179caa 100644 --- a/reference/fsspreadsheet-dsl-operators.html +++ b/reference/fsspreadsheet-dsl-operators.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-reduceoperation.html b/reference/fsspreadsheet-dsl-reduceoperation.html index 0e52275..2dd5f6d 100644 --- a/reference/fsspreadsheet-dsl-reduceoperation.html +++ b/reference/fsspreadsheet-dsl-reduceoperation.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-rowbuilder.html b/reference/fsspreadsheet-dsl-rowbuilder.html index b7c8bb9..f984932 100644 --- a/reference/fsspreadsheet-dsl-rowbuilder.html +++ b/reference/fsspreadsheet-dsl-rowbuilder.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-rowelement.html b/reference/fsspreadsheet-dsl-rowelement.html index 4ee271e..8c9648e 100644 --- a/reference/fsspreadsheet-dsl-rowelement.html +++ b/reference/fsspreadsheet-dsl-rowelement.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-rowindex.html b/reference/fsspreadsheet-dsl-rowindex.html index aad13f6..d3eb7ba 100644 --- a/reference/fsspreadsheet-dsl-rowindex.html +++ b/reference/fsspreadsheet-dsl-rowindex.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-sheetbuilder.html b/reference/fsspreadsheet-dsl-sheetbuilder.html index f8491c9..2c0c42d 100644 --- a/reference/fsspreadsheet-dsl-sheetbuilder.html +++ b/reference/fsspreadsheet-dsl-sheetbuilder.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-sheetelement.html b/reference/fsspreadsheet-dsl-sheetelement.html index 87b6900..7eb058c 100644 --- a/reference/fsspreadsheet-dsl-sheetelement.html +++ b/reference/fsspreadsheet-dsl-sheetelement.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-sheetentity-1.html b/reference/fsspreadsheet-dsl-sheetentity-1.html index eb31239..5b909d1 100644 --- a/reference/fsspreadsheet-dsl-sheetentity-1.html +++ b/reference/fsspreadsheet-dsl-sheetentity-1.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-sheetentityextensions.html b/reference/fsspreadsheet-dsl-sheetentityextensions.html index 19ecd03..914a725 100644 --- a/reference/fsspreadsheet-dsl-sheetentityextensions.html +++ b/reference/fsspreadsheet-dsl-sheetentityextensions.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-tablebuilder.html b/reference/fsspreadsheet-dsl-tablebuilder.html index ed8127c..353541a 100644 --- a/reference/fsspreadsheet-dsl-tablebuilder.html +++ b/reference/fsspreadsheet-dsl-tablebuilder.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-tableelement.html b/reference/fsspreadsheet-dsl-tableelement.html index fe303dc..9b9d70a 100644 --- a/reference/fsspreadsheet-dsl-tableelement.html +++ b/reference/fsspreadsheet-dsl-tableelement.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-transform.html b/reference/fsspreadsheet-dsl-transform.html index 7880009..747249e 100644 --- a/reference/fsspreadsheet-dsl-transform.html +++ b/reference/fsspreadsheet-dsl-transform.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-value.html b/reference/fsspreadsheet-dsl-value.html index 33df76a..859f0bd 100644 --- a/reference/fsspreadsheet-dsl-value.html +++ b/reference/fsspreadsheet-dsl-value.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-workbook.html b/reference/fsspreadsheet-dsl-workbook.html index f980486..ae13a16 100644 --- a/reference/fsspreadsheet-dsl-workbook.html +++ b/reference/fsspreadsheet-dsl-workbook.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-workbookbuilder.html b/reference/fsspreadsheet-dsl-workbookbuilder.html index fa402fa..4b57b0f 100644 --- a/reference/fsspreadsheet-dsl-workbookbuilder.html +++ b/reference/fsspreadsheet-dsl-workbookbuilder.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl-workbookelement.html b/reference/fsspreadsheet-dsl-workbookelement.html index 05dd221..0ea1516 100644 --- a/reference/fsspreadsheet-dsl-workbookelement.html +++ b/reference/fsspreadsheet-dsl-workbookelement.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-dsl.html b/reference/fsspreadsheet-dsl.html index e134f22..58dc4e2 100644 --- a/reference/fsspreadsheet-dsl.html +++ b/reference/fsspreadsheet-dsl.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-enhancements.html b/reference/fsspreadsheet-enhancements.html index dd6b750..3c4873a 100644 --- a/reference/fsspreadsheet-enhancements.html +++ b/reference/fsspreadsheet-enhancements.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-fsaddress.html b/reference/fsspreadsheet-fsaddress.html index 807d91a..f4a9c49 100644 --- a/reference/fsspreadsheet-fsaddress.html +++ b/reference/fsspreadsheet-fsaddress.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-fscell.html b/reference/fsspreadsheet-fscell.html index cdc0b9e..eaa135d 100644 --- a/reference/fsspreadsheet-fscell.html +++ b/reference/fsspreadsheet-fscell.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-fscellaux.html b/reference/fsspreadsheet-fscellaux.html index 6ff1adc..28f6581 100644 --- a/reference/fsspreadsheet-fscellaux.html +++ b/reference/fsspreadsheet-fscellaux.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-fscellscollection.html b/reference/fsspreadsheet-fscellscollection.html index 73abeeb..210ab34 100644 --- a/reference/fsspreadsheet-fscellscollection.html +++ b/reference/fsspreadsheet-fscellscollection.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-fscolumn.html b/reference/fsspreadsheet-fscolumn.html index 93fa868..bf6a235 100644 --- a/reference/fsspreadsheet-fscolumn.html +++ b/reference/fsspreadsheet-fscolumn.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-fsrange.html b/reference/fsspreadsheet-fsrange.html index bab2ad4..1eca648 100644 --- a/reference/fsspreadsheet-fsrange.html +++ b/reference/fsspreadsheet-fsrange.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-fsrangeaddress.html b/reference/fsspreadsheet-fsrangeaddress.html index a7c67bf..970484a 100644 --- a/reference/fsspreadsheet-fsrangeaddress.html +++ b/reference/fsspreadsheet-fsrangeaddress.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-fsrangebase.html b/reference/fsspreadsheet-fsrangebase.html index 4216b11..21155e3 100644 --- a/reference/fsspreadsheet-fsrangebase.html +++ b/reference/fsspreadsheet-fsrangebase.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-fsrangecolumn.html b/reference/fsspreadsheet-fsrangecolumn.html index 8240939..875f863 100644 --- a/reference/fsspreadsheet-fsrangecolumn.html +++ b/reference/fsspreadsheet-fsrangecolumn.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-fsrangerow.html b/reference/fsspreadsheet-fsrangerow.html index be7f96f..98d5350 100644 --- a/reference/fsspreadsheet-fsrangerow.html +++ b/reference/fsspreadsheet-fsrangerow.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-fsrow.html b/reference/fsspreadsheet-fsrow.html index 8bc7766..624b1ee 100644 --- a/reference/fsspreadsheet-fsrow.html +++ b/reference/fsspreadsheet-fsrow.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-fstable.html b/reference/fsspreadsheet-fstable.html index e7880ef..49d8cc2 100644 --- a/reference/fsspreadsheet-fstable.html +++ b/reference/fsspreadsheet-fstable.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-fstablefield.html b/reference/fsspreadsheet-fstablefield.html index 1bc9430..7cd552d 100644 --- a/reference/fsspreadsheet-fstablefield.html +++ b/reference/fsspreadsheet-fstablefield.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-fstablerow.html b/reference/fsspreadsheet-fstablerow.html index a663a45..b0935a9 100644 --- a/reference/fsspreadsheet-fstablerow.html +++ b/reference/fsspreadsheet-fstablerow.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-fsworkbook.html b/reference/fsspreadsheet-fsworkbook.html index 1888c7a..900626a 100644 --- a/reference/fsspreadsheet-fsworkbook.html +++ b/reference/fsspreadsheet-fsworkbook.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-fsworksheet.html b/reference/fsspreadsheet-fsworksheet.html index 6e0a07c..8474c47 100644 --- a/reference/fsspreadsheet-fsworksheet.html +++ b/reference/fsspreadsheet-fsworksheet.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-interactive-formatterkernelextension.html b/reference/fsspreadsheet-interactive-formatterkernelextension.html index 6a7fe17..6743ee2 100644 --- a/reference/fsspreadsheet-interactive-formatterkernelextension.html +++ b/reference/fsspreadsheet-interactive-formatterkernelextension.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-interactive-formatters.html b/reference/fsspreadsheet-interactive-formatters.html index 17142fe..69f19e8 100644 --- a/reference/fsspreadsheet-interactive-formatters.html +++ b/reference/fsspreadsheet-interactive-formatters.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-interactive-fssparsematrix-1.html b/reference/fsspreadsheet-interactive-fssparsematrix-1.html index 4c09970..7a745cd 100644 --- a/reference/fsspreadsheet-interactive-fssparsematrix-1.html +++ b/reference/fsspreadsheet-interactive-fssparsematrix-1.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-interactive.html b/reference/fsspreadsheet-interactive.html index 2baf9f6..8789153 100644 --- a/reference/fsspreadsheet-interactive.html +++ b/reference/fsspreadsheet-interactive.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-js-fsspreadsheet.html b/reference/fsspreadsheet-js-fsspreadsheet.html index d8a9556..2ff99b6 100644 --- a/reference/fsspreadsheet-js-fsspreadsheet.html +++ b/reference/fsspreadsheet-js-fsspreadsheet.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-js-jscell.html b/reference/fsspreadsheet-js-jscell.html index 34ed365..226f1bb 100644 --- a/reference/fsspreadsheet-js-jscell.html +++ b/reference/fsspreadsheet-js-jscell.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-js-json.html b/reference/fsspreadsheet-js-json.html index a638852..95add73 100644 --- a/reference/fsspreadsheet-js-json.html +++ b/reference/fsspreadsheet-js-json.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-js-jstable.html b/reference/fsspreadsheet-js-jstable.html index 31cc6d1..f3abe07 100644 --- a/reference/fsspreadsheet-js-jstable.html +++ b/reference/fsspreadsheet-js-jstable.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-js-jsworkbook.html b/reference/fsspreadsheet-js-jsworkbook.html index 6b2c131..2c8f048 100644 --- a/reference/fsspreadsheet-js-jsworkbook.html +++ b/reference/fsspreadsheet-js-jsworkbook.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-js-jsworksheet.html b/reference/fsspreadsheet-js-jsworksheet.html index c973d51..121cd04 100644 --- a/reference/fsspreadsheet-js-jsworksheet.html +++ b/reference/fsspreadsheet-js-jsworksheet.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-js-xlsx.html b/reference/fsspreadsheet-js-xlsx.html index a5b3ece..ec6f5bb 100644 --- a/reference/fsspreadsheet-js-xlsx.html +++ b/reference/fsspreadsheet-js-xlsx.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-js.html b/reference/fsspreadsheet-js.html index a840305..5422aaf 100644 --- a/reference/fsspreadsheet-js.html +++ b/reference/fsspreadsheet-js.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-json-cell.html b/reference/fsspreadsheet-json-cell.html index c9b4b03..fa03094 100644 --- a/reference/fsspreadsheet-json-cell.html +++ b/reference/fsspreadsheet-json-cell.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-json-row.html b/reference/fsspreadsheet-json-row.html index 26c0f23..2687721 100644 --- a/reference/fsspreadsheet-json-row.html +++ b/reference/fsspreadsheet-json-row.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-json-table.html b/reference/fsspreadsheet-json-table.html index 3b98bf5..e1ef605 100644 --- a/reference/fsspreadsheet-json-table.html +++ b/reference/fsspreadsheet-json-table.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-json-value-decode.html b/reference/fsspreadsheet-json-value-decode.html index be9c7ec..1dd20bb 100644 --- a/reference/fsspreadsheet-json-value-decode.html +++ b/reference/fsspreadsheet-json-value-decode.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-json-value.html b/reference/fsspreadsheet-json-value.html index 455f0e7..f78ef55 100644 --- a/reference/fsspreadsheet-json-value.html +++ b/reference/fsspreadsheet-json-value.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-json-workbook.html b/reference/fsspreadsheet-json-workbook.html index f0bdaf0..a7e6a70 100644 --- a/reference/fsspreadsheet-json-workbook.html +++ b/reference/fsspreadsheet-json-workbook.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-json-worksheet.html b/reference/fsspreadsheet-json-worksheet.html index 78d8733..ada78d5 100644 --- a/reference/fsspreadsheet-json-worksheet.html +++ b/reference/fsspreadsheet-json-worksheet.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-json.html b/reference/fsspreadsheet-json.html index c079b61..4e73151 100644 --- a/reference/fsspreadsheet-json.html +++ b/reference/fsspreadsheet-json.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-cell-cellvalue.html b/reference/fsspreadsheet-net-cell-cellvalue.html index 8251df0..b938c71 100644 --- a/reference/fsspreadsheet-net-cell-cellvalue.html +++ b/reference/fsspreadsheet-net-cell-cellvalue.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-cell.html b/reference/fsspreadsheet-net-cell.html index 83507f0..1c02c7d 100644 --- a/reference/fsspreadsheet-net-cell.html +++ b/reference/fsspreadsheet-net-cell.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-celldata-celldatavalue.html b/reference/fsspreadsheet-net-celldata-celldatavalue.html index 2a97732..c26ea30 100644 --- a/reference/fsspreadsheet-net-celldata-celldatavalue.html +++ b/reference/fsspreadsheet-net-celldata-celldatavalue.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-celldata-cellerror.html b/reference/fsspreadsheet-net-celldata-cellerror.html index db00881..9216dab 100644 --- a/reference/fsspreadsheet-net-celldata-cellerror.html +++ b/reference/fsspreadsheet-net-celldata-cellerror.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-celldata.html b/reference/fsspreadsheet-net-celldata.html index b2535c9..68bce8c 100644 --- a/reference/fsspreadsheet-net-celldata.html +++ b/reference/fsspreadsheet-net-celldata.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-fsextensions.html b/reference/fsspreadsheet-net-fsextensions.html index c8d7f91..516a144 100644 --- a/reference/fsspreadsheet-net-fsextensions.html +++ b/reference/fsspreadsheet-net-fsextensions.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-package.html b/reference/fsspreadsheet-net-package.html index c0f3349..5c0df63 100644 --- a/reference/fsspreadsheet-net-package.html +++ b/reference/fsspreadsheet-net-package.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-row-spans.html b/reference/fsspreadsheet-net-row-spans.html index 63d1db4..288f26c 100644 --- a/reference/fsspreadsheet-net-row-spans.html +++ b/reference/fsspreadsheet-net-row-spans.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-row.html b/reference/fsspreadsheet-net-row.html index 436a6c0..d7a36e9 100644 --- a/reference/fsspreadsheet-net-row.html +++ b/reference/fsspreadsheet-net-row.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-sharedstringtable-sharedstringitem.html b/reference/fsspreadsheet-net-sharedstringtable-sharedstringitem.html index 165e204..c5eb200 100644 --- a/reference/fsspreadsheet-net-sharedstringtable-sharedstringitem.html +++ b/reference/fsspreadsheet-net-sharedstringtable-sharedstringitem.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-sharedstringtable.html b/reference/fsspreadsheet-net-sharedstringtable.html index 02ba96c..41879fd 100644 --- a/reference/fsspreadsheet-net-sharedstringtable.html +++ b/reference/fsspreadsheet-net-sharedstringtable.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-sheet-sheets.html b/reference/fsspreadsheet-net-sheet-sheets.html index c4c3714..089d800 100644 --- a/reference/fsspreadsheet-net-sheet-sheets.html +++ b/reference/fsspreadsheet-net-sheet-sheets.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-sheet.html b/reference/fsspreadsheet-net-sheet.html index 807519a..9947f84 100644 --- a/reference/fsspreadsheet-net-sheet.html +++ b/reference/fsspreadsheet-net-sheet.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-sheetdata.html b/reference/fsspreadsheet-net-sheetdata.html index ed8102f..64c2e19 100644 --- a/reference/fsspreadsheet-net-sheetdata.html +++ b/reference/fsspreadsheet-net-sheetdata.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-spreadsheet.html b/reference/fsspreadsheet-net-spreadsheet.html index fc6712b..8f342f2 100644 --- a/reference/fsspreadsheet-net-spreadsheet.html +++ b/reference/fsspreadsheet-net-spreadsheet.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-sst.html b/reference/fsspreadsheet-net-sst.html index e08156c..7cbe306 100644 --- a/reference/fsspreadsheet-net-sst.html +++ b/reference/fsspreadsheet-net-sst.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-stylesheet-border.html b/reference/fsspreadsheet-net-stylesheet-border.html index c73b26e..63f40fa 100644 --- a/reference/fsspreadsheet-net-stylesheet-border.html +++ b/reference/fsspreadsheet-net-stylesheet-border.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-stylesheet-cellformat.html b/reference/fsspreadsheet-net-stylesheet-cellformat.html index fc3067c..3d3b7be 100644 --- a/reference/fsspreadsheet-net-stylesheet-cellformat.html +++ b/reference/fsspreadsheet-net-stylesheet-cellformat.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-stylesheet-fill.html b/reference/fsspreadsheet-net-stylesheet-fill.html index fbdcc5b..03b0268 100644 --- a/reference/fsspreadsheet-net-stylesheet-fill.html +++ b/reference/fsspreadsheet-net-stylesheet-fill.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-stylesheet-font.html b/reference/fsspreadsheet-net-stylesheet-font.html index df1e6cd..9441e94 100644 --- a/reference/fsspreadsheet-net-stylesheet-font.html +++ b/reference/fsspreadsheet-net-stylesheet-font.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-stylesheet-numberingformat.html b/reference/fsspreadsheet-net-stylesheet-numberingformat.html index dbdef2b..433c253 100644 --- a/reference/fsspreadsheet-net-stylesheet-numberingformat.html +++ b/reference/fsspreadsheet-net-stylesheet-numberingformat.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-stylesheet.html b/reference/fsspreadsheet-net-stylesheet.html index e6d1399..ee46d61 100644 --- a/reference/fsspreadsheet-net-stylesheet.html +++ b/reference/fsspreadsheet-net-stylesheet.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-table-area.html b/reference/fsspreadsheet-net-table-area.html index 685bd6f..636e9f4 100644 --- a/reference/fsspreadsheet-net-table-area.html +++ b/reference/fsspreadsheet-net-table-area.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-table-tablecolumn.html b/reference/fsspreadsheet-net-table-tablecolumn.html index d6ae8c0..7f8e87d 100644 --- a/reference/fsspreadsheet-net-table-tablecolumn.html +++ b/reference/fsspreadsheet-net-table-tablecolumn.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-table-tablecolumns.html b/reference/fsspreadsheet-net-table-tablecolumns.html index e81dc6d..498c408 100644 --- a/reference/fsspreadsheet-net-table-tablecolumns.html +++ b/reference/fsspreadsheet-net-table-tablecolumns.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-table.html b/reference/fsspreadsheet-net-table.html index 9fabc83..a3d1aca 100644 --- a/reference/fsspreadsheet-net-table.html +++ b/reference/fsspreadsheet-net-table.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-workbook.html b/reference/fsspreadsheet-net-workbook.html index 0700799..3f8ea17 100644 --- a/reference/fsspreadsheet-net-workbook.html +++ b/reference/fsspreadsheet-net-workbook.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-workbookpart.html b/reference/fsspreadsheet-net-workbookpart.html index 462039c..6c1f761 100644 --- a/reference/fsspreadsheet-net-workbookpart.html +++ b/reference/fsspreadsheet-net-workbookpart.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-worksheet-comments.html b/reference/fsspreadsheet-net-worksheet-comments.html index c92c96a..fb1f58d 100644 --- a/reference/fsspreadsheet-net-worksheet-comments.html +++ b/reference/fsspreadsheet-net-worksheet-comments.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-worksheet-worksheetcommentspart.html b/reference/fsspreadsheet-net-worksheet-worksheetcommentspart.html index 4faba27..8869178 100644 --- a/reference/fsspreadsheet-net-worksheet-worksheetcommentspart.html +++ b/reference/fsspreadsheet-net-worksheet-worksheetcommentspart.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-worksheet-worksheetpart.html b/reference/fsspreadsheet-net-worksheet-worksheetpart.html index 551bb69..d731583 100644 --- a/reference/fsspreadsheet-net-worksheet-worksheetpart.html +++ b/reference/fsspreadsheet-net-worksheet-worksheetpart.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-worksheet.html b/reference/fsspreadsheet-net-worksheet.html index 821ecf7..7e6b8d3 100644 --- a/reference/fsspreadsheet-net-worksheet.html +++ b/reference/fsspreadsheet-net-worksheet.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-writer.html b/reference/fsspreadsheet-net-writer.html index 461ab8a..cd8e25d 100644 --- a/reference/fsspreadsheet-net-writer.html +++ b/reference/fsspreadsheet-net-writer.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-ziparchivereader-cellformat.html b/reference/fsspreadsheet-net-ziparchivereader-cellformat.html index bc1a99a..db05032 100644 --- a/reference/fsspreadsheet-net-ziparchivereader-cellformat.html +++ b/reference/fsspreadsheet-net-ziparchivereader-cellformat.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-ziparchivereader-dtype.html b/reference/fsspreadsheet-net-ziparchivereader-dtype.html index af4880a..f3f0c32 100644 --- a/reference/fsspreadsheet-net-ziparchivereader-dtype.html +++ b/reference/fsspreadsheet-net-ziparchivereader-dtype.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-ziparchivereader-fsworkbook.html b/reference/fsspreadsheet-net-ziparchivereader-fsworkbook.html index 36ba88d..97941a8 100644 --- a/reference/fsspreadsheet-net-ziparchivereader-fsworkbook.html +++ b/reference/fsspreadsheet-net-ziparchivereader-fsworkbook.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-ziparchivereader-numberformat.html b/reference/fsspreadsheet-net-ziparchivereader-numberformat.html index 7eaaaf1..ef91fc8 100644 --- a/reference/fsspreadsheet-net-ziparchivereader-numberformat.html +++ b/reference/fsspreadsheet-net-ziparchivereader-numberformat.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-ziparchivereader-relationship.html b/reference/fsspreadsheet-net-ziparchivereader-relationship.html index 7ad2a05..3b33b6b 100644 --- a/reference/fsspreadsheet-net-ziparchivereader-relationship.html +++ b/reference/fsspreadsheet-net-ziparchivereader-relationship.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-ziparchivereader-relationships.html b/reference/fsspreadsheet-net-ziparchivereader-relationships.html index 4fc0e27..42d14de 100644 --- a/reference/fsspreadsheet-net-ziparchivereader-relationships.html +++ b/reference/fsspreadsheet-net-ziparchivereader-relationships.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
@@ -183,7 +183,7 @@

- + @@ -239,7 +239,7 @@

- + @@ -307,7 +307,7 @@

- + @@ -373,7 +373,7 @@

- + @@ -429,7 +429,7 @@

- + diff --git a/reference/fsspreadsheet-net-ziparchivereader-sharedstrings.html b/reference/fsspreadsheet-net-ziparchivereader-sharedstrings.html index e108f38..cef4a1f 100644 --- a/reference/fsspreadsheet-net-ziparchivereader-sharedstrings.html +++ b/reference/fsspreadsheet-net-ziparchivereader-sharedstrings.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-ziparchivereader-styles.html b/reference/fsspreadsheet-net-ziparchivereader-styles.html index c74d7db..ab2f1d8 100644 --- a/reference/fsspreadsheet-net-ziparchivereader-styles.html +++ b/reference/fsspreadsheet-net-ziparchivereader-styles.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-ziparchivereader-workbook.html b/reference/fsspreadsheet-net-ziparchivereader-workbook.html index 0448d36..7614081 100644 --- a/reference/fsspreadsheet-net-ziparchivereader-workbook.html +++ b/reference/fsspreadsheet-net-ziparchivereader-workbook.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-ziparchivereader-xmlreader.html b/reference/fsspreadsheet-net-ziparchivereader-xmlreader.html index 13a5edc..0a58e4b 100644 --- a/reference/fsspreadsheet-net-ziparchivereader-xmlreader.html +++ b/reference/fsspreadsheet-net-ziparchivereader-xmlreader.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net-ziparchivereader.html b/reference/fsspreadsheet-net-ziparchivereader.html index 2980396..78873e2 100644 --- a/reference/fsspreadsheet-net-ziparchivereader.html +++ b/reference/fsspreadsheet-net-ziparchivereader.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-net.html b/reference/fsspreadsheet-net.html index cb39134..ce9d802 100644 --- a/reference/fsspreadsheet-net.html +++ b/reference/fsspreadsheet-net.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-py-fsspreadsheet.html b/reference/fsspreadsheet-py-fsspreadsheet.html index 7bc6e83..890caf9 100644 --- a/reference/fsspreadsheet-py-fsspreadsheet.html +++ b/reference/fsspreadsheet-py-fsspreadsheet.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-py-json.html b/reference/fsspreadsheet-py-json.html index 8a794a6..0dd64ef 100644 --- a/reference/fsspreadsheet-py-json.html +++ b/reference/fsspreadsheet-py-json.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-py-pycell-datetime.html b/reference/fsspreadsheet-py-pycell-datetime.html index 1cb08d5..fc25023 100644 --- a/reference/fsspreadsheet-py-pycell-datetime.html +++ b/reference/fsspreadsheet-py-pycell-datetime.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-py-pycell-datetimestatic.html b/reference/fsspreadsheet-py-pycell-datetimestatic.html index 05b3112..a5d8052 100644 --- a/reference/fsspreadsheet-py-pycell-datetimestatic.html +++ b/reference/fsspreadsheet-py-pycell-datetimestatic.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-py-pycell.html b/reference/fsspreadsheet-py-pycell.html index 79bcc81..c7dcfd0 100644 --- a/reference/fsspreadsheet-py-pycell.html +++ b/reference/fsspreadsheet-py-pycell.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-py-pycelltype.html b/reference/fsspreadsheet-py-pycelltype.html index 458e875..ef989af 100644 --- a/reference/fsspreadsheet-py-pycelltype.html +++ b/reference/fsspreadsheet-py-pycelltype.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-py-pytable-tablestyle.html b/reference/fsspreadsheet-py-pytable-tablestyle.html index 54cbc5a..f767454 100644 --- a/reference/fsspreadsheet-py-pytable-tablestyle.html +++ b/reference/fsspreadsheet-py-pytable-tablestyle.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-py-pytable-tablestylestatic.html b/reference/fsspreadsheet-py-pytable-tablestylestatic.html index 072672f..0f3648f 100644 --- a/reference/fsspreadsheet-py-pytable-tablestylestatic.html +++ b/reference/fsspreadsheet-py-pytable-tablestylestatic.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-py-pytable.html b/reference/fsspreadsheet-py-pytable.html index 2920180..0715e38 100644 --- a/reference/fsspreadsheet-py-pytable.html +++ b/reference/fsspreadsheet-py-pytable.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-py-pyworkbook.html b/reference/fsspreadsheet-py-pyworkbook.html index d2b3774..92f9950 100644 --- a/reference/fsspreadsheet-py-pyworkbook.html +++ b/reference/fsspreadsheet-py-pyworkbook.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-py-pyworksheet.html b/reference/fsspreadsheet-py-pyworksheet.html index b62a673..e51b59e 100644 --- a/reference/fsspreadsheet-py-pyworksheet.html +++ b/reference/fsspreadsheet-py-pyworksheet.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-py-xlsx.html b/reference/fsspreadsheet-py-xlsx.html index dff9834..680789c 100644 --- a/reference/fsspreadsheet-py-xlsx.html +++ b/reference/fsspreadsheet-py-xlsx.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-py.html b/reference/fsspreadsheet-py.html index 5ab0d8f..23f0ba2 100644 --- a/reference/fsspreadsheet-py.html +++ b/reference/fsspreadsheet-py.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-range.html b/reference/fsspreadsheet-range.html index 4bf11d1..1be997f 100644 --- a/reference/fsspreadsheet-range.html +++ b/reference/fsspreadsheet-range.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html b/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html index 506ea9e..2fc1c02 100644 --- a/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html +++ b/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet-sheetbuilder.html b/reference/fsspreadsheet-sheetbuilder.html index d3fcd6b..147e852 100644 --- a/reference/fsspreadsheet-sheetbuilder.html +++ b/reference/fsspreadsheet-sheetbuilder.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/fsspreadsheet.html b/reference/fsspreadsheet.html index 50d394b..34ccc00 100644 --- a/reference/fsspreadsheet.html +++ b/reference/fsspreadsheet.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1
diff --git a/reference/index.html b/reference/index.html index 8f97561..286ae26 100644 --- a/reference/index.html +++ b/reference/index.html @@ -35,7 +35,7 @@

FsSpreadsheet

-
Documentation for 6.1.0
+
Documentation for 6.1.1